Exemple #1
0
 public void EnterSpawn(CharacterEntity character)
 { // Makes a character "enter" the spawn. Makes it invisible untill it leaves.
   // Given character is stored in the hashset.
   // use this through the object this spawn is attached to
     character.DeSpawnCharacter();
     CharactersInside.Add(character);
 }