diff --git a/State/Global/MapState.cs b/State/Global/MapState.cs index 6b8bf71..63d97d7 100644 --- a/State/Global/MapState.cs +++ b/State/Global/MapState.cs @@ -54,4 +54,14 @@ public partial class MapState : Resource } return null; } + + public Variant Get(string key) + { + return this[key]; + } + + public void Set(string key, Variant value) + { + this[key] = value; + } }