gzdoom-gles/wadsrc/static/zscript/dictionary.zs
Alexander Kromm a7e6552f0f export TMap<FString, FString> to ZScript
# Conflicts:
#	src/CMakeLists.txt
#	src/serializer.h
2020-01-06 19:18:22 +01:00

10 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;
}