mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-14 16:41:07 +00:00
11 lines
232 B
Text
11 lines
232 B
Text
|
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;
|
||
|
}
|