mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-01 18:45:31 +00:00
19 lines
364 B
C++
19 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
|