Inheritance: NotificationForm
示例#1
0
        public static void ShowPlayer(Player player, string comm)
        {
            if (player == null)
            {
                return;
            }
            PlayerForm f = new PlayerForm();

            f.player = player;

            ShowNotification(f, comm);
        }
        public static void ShowPlayer(Player player, string comm)
        {
            if (player == null) return;
            PlayerForm f = new PlayerForm();
            f.player = player;

            ShowNotification(f, comm);
        }