gzdoom-gles/wadsrc/static/zscript/dictionary.zs
2020-01-06 19:49:25 +01:00

11 lines
265 B
Text

struct Dictionary native
{
native static Dictionary Create();
native static Dictionary FromString(String s);
native void Insert(String key, String value);
native void Remove(String key);
native String At(String key) const;
native String ToString() const;
}