1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

20 lines
364 B
C++
Raw Normal View History

#ifndef GAME_MWCLASS_NPC_H
#define GAME_MWCLASS_NPC_H
2010-08-03 13:03:08 +02:00
#include "../mwworld/class.hpp"
2010-08-03 13:03:08 +02:00
namespace MWClass
2010-08-03 13:03:08 +02:00
{
class Npc : public MWWorld::Class
2010-08-03 13:03:08 +02:00
{
public:
virtual MWMechanics::CreatureStats& getCreatureStats (const MWWorld::Ptr& ptr) const;
2010-08-03 13:03:08 +02:00
///< Return creature stats
static void registerSelf();
};
}
#endif