mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-23 13:09:42 +00:00
17 lines
665 B
C++
17 lines
665 B
C++
#include "refidhardcoded.hpp"
|
|
|
|
namespace ESM
|
|
{//A few hardcoded ids that are used multiple times accross the codebase
|
|
const RefId sPlayerId = ESM::RefId::stringRefId("Player");
|
|
const RefId sMenuClickSoundId = ESM::RefId::stringRefId("Menu Click");
|
|
const RefId sBookPageSoundId = ESM::RefId::stringRefId("book page");
|
|
const RefId sGoldId001 = ESM::RefId::stringRefId("gold_001");
|
|
const RefId sGoldId005 = ESM::RefId::stringRefId("gold_005");
|
|
const RefId sGoldId010 = ESM::RefId::stringRefId("gold_010");
|
|
const RefId sGoldId025 = ESM::RefId::stringRefId("gold_025");
|
|
const RefId sGoldId100 = ESM::RefId::stringRefId("gold_100");
|
|
}
|
|
|
|
|
|
|
|
|