Exemple #1
0
        public static void ShowCreatureStats(Creature c, string comm)
        {
            if (c == null)
            {
                return;
            }
            CreatureStatsForm f = new CreatureStatsForm();

            f.creature = c;

            ShowNotification(f, comm);
        }
        public static void ShowCreatureStats(Creature c, string comm)
        {
            if (c == null) return;
            CreatureStatsForm f = new CreatureStatsForm();
            f.creature = c;

            ShowNotification(f, comm);
        }