mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
20 lines
379 B
C++
20 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
|