mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:19:55 +00:00
20 lines
335 B
C++
20 lines
335 B
C++
|
#ifndef GAME_MWWORLD_NPC_H
|
||
|
#define GAME_MWWORLD_NPC_H
|
||
|
|
||
|
#include "class.hpp"
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
class Npc : public Class
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
virtual MWMechanics::CreatureStats& getCreatureStats (const Ptr& ptr) const;
|
||
|
///< Return creature stats
|
||
|
|
||
|
static void registerSelf();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|