Inheritance: NotificationForm
        public static void ShowCreatureDrops(Creature c, string comm)
        {
            if (c == null) return;
            CreatureDropsForm f = new CreatureDropsForm();
            f.creature = c;

            ShowNotification(f, comm);
        }
Beispiel #2
0
        public static void ShowCreatureDrops(Creature c, string comm)
        {
            if (c == null)
            {
                return;
            }
            CreatureDropsForm f = new CreatureDropsForm();

            f.creature = c;

            ShowNotification(f, comm);
        }