mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-15 00:42:20 +00:00
11 lines
265 B
Text
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;
|
|
}
|