mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 03:15:32 +00:00
20 lines
485 B
C++
20 lines
485 B
C++
#ifndef GAME_MWMECHANICS_NPCSTATS_H
|
|
#define GAME_MWMECHANICS_NPCSTATS_H
|
|
|
|
#include <map>
|
|
|
|
namespace MWMechanics
|
|
{
|
|
/// \brief Additional stats for NPCs
|
|
///
|
|
/// For non-NPC-specific stats, see the CreatureStats struct.
|
|
|
|
struct NpcStats
|
|
{
|
|
// NPCs other than the player can only have one faction. But for the sake of consistency
|
|
// we use the same data structure for the PC and the NPCs.
|
|
std::map<std::string, int> mFactionRank;
|
|
};
|
|
}
|
|
|
|
#endif
|