Example #1
0
        void Warp(MapControllerEventArgs args)
        {
            bool warp = string.IsNullOrEmpty(WarpDebugSetting) ||
                        SettingsHelper.IsDebugSet(WarpDebugSetting);

            if (warp)
            {
                PanelManager.Instance.Push(WarpPanel, args.Coordinates);
            }
        }
Example #2
0
 public void Warp(MapControllerEventArgs args)
 {
     PanelManager.Instance.Push(this, args);
 }