static void Main(string[] args)
        {
            var x = new BunnyWarsStructure();

            x.AddRoom(1);
            x.AddBunny("pesho", 1, 1);
            x.ListBunniesByTeam(-2);
        }
Esempio n. 2
0
 public static void Main(string[] args)
 {
     BunnyWarsStructure bs = new BunnyWarsStructure();
 }