2010-08-03 11:17:31 +00:00
|
|
|
#ifndef GAME_MWCLASS_NPC_H
|
|
|
|
#define GAME_MWCLASS_NPC_H
|
2010-08-03 11:03:08 +00:00
|
|
|
|
2010-08-03 11:17:31 +00:00
|
|
|
#include "../mwworld/class.hpp"
|
2010-08-03 11:03:08 +00:00
|
|
|
|
2010-08-03 11:17:31 +00:00
|
|
|
namespace MWClass
|
2010-08-03 11:03:08 +00:00
|
|
|
{
|
2010-08-03 11:17:31 +00:00
|
|
|
class Npc : public MWWorld::Class
|
2010-08-03 11:03:08 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2010-08-03 11:17:31 +00:00
|
|
|
virtual MWMechanics::CreatureStats& getCreatureStats (const MWWorld::Ptr& ptr) const;
|
2010-08-03 11:03:08 +00:00
|
|
|
///< Return creature stats
|
|
|
|
|
|
|
|
static void registerSelf();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|