コード例 #1
0
ファイル: GameData.cpp プロジェクト: ashmedai/NVSE
const ModInfo * DataHandler::LookupModByName(const char * modName)
{
	return modList.modInfoList.Find(LoadedModFinder(modName));
}
コード例 #2
0
ファイル: GameData.cpp プロジェクト: ashmedai/NVSE
UInt8 DataHandler::GetModIndex(const char* modName)
{
	return modList.modInfoList.GetIndexOf(LoadedModFinder(modName));
}
コード例 #3
0
ファイル: GameData.cpp プロジェクト: Alenett/OBSE-for-OR
const ModEntry * DataHandler::LookupModByName(const char * modName)
{
	return ModEntryVisitor(&modList).Find(LoadedModFinder(modName));
}