Esempio n. 1
0
 public static void Register(Character character, Collider hurtbox) {
     if(character == null)
         throw new ArgumentNullException("character");
     if(hurtbox == null)
         throw new ArgumentNullException("hurtbox");
     HurtboxMap[hurtbox] = character;
 }
Esempio n. 2
0
 protected abstract void OnSpawn(Character character);