Example #1
0
 public void SaveCurrentMap()
 {
     if (this.session.CurrentMap.Value.IsStored.Value)
     {
         this.actionHandler.SaveCurrentMap();
     }
     else
     {
         SaveMapInteraction interaction = new SaveMapInteraction();
         this.actionHandler.OpenWindow(interaction);
     }
 }
Example #2
0
        public void SaveAsMap()
        {
            SaveMapInteraction interaction = new SaveMapInteraction();

            this.actionHandler.OpenWindow(interaction);
        }