mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
20 lines
364 B
C++
20 lines
364 B
C++
#ifndef GAME_MWCLASS_NPC_H
|
|
#define GAME_MWCLASS_NPC_H
|
|
|
|
#include "../mwworld/class.hpp"
|
|
|
|
namespace MWClass
|
|
{
|
|
class Npc : public MWWorld::Class
|
|
{
|
|
public:
|
|
|
|
virtual MWMechanics::CreatureStats& getCreatureStats (const MWWorld::Ptr& ptr) const;
|
|
///< Return creature stats
|
|
|
|
static void registerSelf();
|
|
};
|
|
}
|
|
|
|
#endif
|