gzdoom/wadsrc/static/zscript/dictionary.zs
2019-12-30 14:57:37 +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;
}