qzdoom/wadsrc/static/zscript/dictionary.zs

11 lines
232 B
Text
Raw Normal View History

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