mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +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
|