mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 21:23:52 +00:00
Make some methods private
This commit is contained in:
parent
625a538f03
commit
9fedaf18d6
1 changed files with 7 additions and 5 deletions
|
@ -83,12 +83,7 @@ private:
|
|||
int mPartslots[sPartListSize]; //Each part slot is taken by clothing, armor, or is empty
|
||||
int mPartPriorities[sPartListSize];
|
||||
|
||||
public:
|
||||
NpcAnimation(const MWWorld::Ptr& ptr, Ogre::SceneNode* node,
|
||||
MWWorld::InventoryStore& inv, int visibilityFlags);
|
||||
virtual ~NpcAnimation();
|
||||
NifOgre::EntityList insertBoundedPart(const std::string &mesh, int group, const std::string &bonename);
|
||||
virtual void runAnimation(float timepassed);
|
||||
void updateParts();
|
||||
void removeEntities(NifOgre::EntityList &entities);
|
||||
void removeIndividualPart(int type);
|
||||
|
@ -98,6 +93,13 @@ public:
|
|||
void removePartGroup(int group);
|
||||
void addPartGroup(int group, int priority, std::vector<ESM::PartReference>& parts);
|
||||
|
||||
public:
|
||||
NpcAnimation(const MWWorld::Ptr& ptr, Ogre::SceneNode* node,
|
||||
MWWorld::InventoryStore& inv, int visibilityFlags);
|
||||
virtual ~NpcAnimation();
|
||||
|
||||
virtual void runAnimation(float timepassed);
|
||||
|
||||
void forceUpdate();
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue