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