Example #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;
 }
Example #2
0
 protected abstract void OnSpawn(Character character);