1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 19:19:55 +00:00
openmw-tes3mp/apps/openmw/mwworld/npc.hpp

20 lines
335 B
C++
Raw Normal View History

2010-08-03 11:03:08 +00:00
#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