예제 #1
0
파일: LairTeleport.cs 프로젝트: djvorr/SSE
 public void Teleport(Hero hero, Monster monster)
 {
     monster.setLocation(hero.getLocation());
 }
예제 #2
0
파일: Boss.cs 프로젝트: djvorr/SSE
 public Boss()
 {
     boss = new Monster();
 }
예제 #3
0
 public void Add(Monster monster)
 {
     monsters.Insert(index, monster);
     index += 1;
 }
예제 #4
0
파일: BossFight.cs 프로젝트: djvorr/SSE
 public void Add(Monster monster)
 {
     minions.Add(monster);
     iterator = new MonsterIterator(minions);
 }