1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 23:23:52 +00:00
openmw-tes3mp/apps/openmw/mwclass/creature.hpp

19 lines
379 B
C++

#ifndef GAME_MWCLASS_CREATURE_H
#define GAME_MWCLASS_CREATURE_H
#include "../mwworld/class.hpp"
namespace MWClass
{
class Creature : public MWWorld::Class
{
public:
virtual MWMechanics::CreatureStats& getCreatureStats (const MWWorld::Ptr& ptr) const;
///< Return creature stats
static void registerSelf();
};
}
#endif