added basic NPCManager

This commit is contained in:
2020-08-20 16:43:48 -05:00
parent c549192f59
commit 6857f50c30
8 changed files with 100 additions and 4 deletions

26
src/NPC.hpp Normal file
View File

@@ -0,0 +1,26 @@
#ifndef _NPCCLASS_HPP
#define _NPCCLASS_HPP
#include "CNStructs.hpp"
class BaseNPC {
public:
sNPCAppearanceData appearanceData;
BaseNPC() {};
BaseNPC(int x, int y, int z, int type) {
appearanceData.iX = x;
appearanceData.iY = y;
appearanceData.iZ = z;
appearanceData.iNPCType = type;
appearanceData.iHP = 400;
appearanceData.iAngle = 0;
appearanceData.iConditionBitFlag = 0;
appearanceData.iBarkerType = 0;
// hopefully no collisions happen :eyes:
appearanceData.iNPC_ID = (int32_t)getTime();
};
};
#endif