Example #1
0
        void Move(Room room, Client client, object args)
        {
            room.Move(client.name, args.ToString());

            if (room.IsOver())
            {
                rooms.Remove(room);
            }
        }
Example #2
0
 void Remove(Room room, object[] args)
 {
     rooms.SendMessage(room, args);
     rooms.Remove(room);
 }