Example #1
0
        public static void ShowWasteForm(Hunt hunt, string command)
        {
            if (hunt == null)
            {
                return;
            }
            WasteForm f = new WasteForm();

            f.hunt = hunt;

            ShowNotification(f, command);
        }
        public static void ShowWasteForm(Hunt hunt, string command)
        {
            if (hunt == null) return;
            WasteForm f = new WasteForm();
            f.hunt = hunt;

            ShowNotification(f, command);
        }