Exemplo 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;
 }
Exemplo n.º 2
0
 protected abstract void OnSpawn(Character character);