normalize includes: zone

This commit is contained in:
brainiac
2025-12-18 00:59:27 -08:00
committed by Alex
parent 552a908f92
commit 7fe49b5630
278 changed files with 2431 additions and 2901 deletions
+5 -10
View File
@@ -1,15 +1,10 @@
#ifndef PETS_H
#define PETS_H
#pragma once
class Mob;
struct NPCType;
class Pet : public NPC {
public:
Pet(NPCType *type_data, Mob *owner, uint8 pet_type, uint16 spell_id, int16 power);
virtual bool CheckSpellLevelRestriction(Mob *caster, uint16 spell_id);
};
#endif
public:
Pet(NPCType *type_data, Mob *owner, uint8 pet_type, uint16 spell_id, int16 power);
virtual bool CheckSpellLevelRestriction(Mob *caster, uint16 spell_id);
};