コード例 #1
0
        public void SpawnBirds()
        {
            for (int i = Birds.Count; i <= 1000; i++)
            {
                var bird = new Bird();

                bird.MoveToWorld(GetRandomLocation(), Map.ZombieLand);
                Birds.Add(bird);
                bird.ZombieSerial = Uid;
            }
        }
コード例 #2
0
 public void AddBird(Bird bird)
 {
     Birds.Add(bird);
 }