Changes to test system to allow per class tests.

This commit is contained in:
2023-03-31 03:00:17 -07:00
parent c5c8bddb48
commit c2f04de4f8
41 changed files with 1352 additions and 902 deletions

18
sbf-cpp/Abilities.cpp Normal file
View File

@@ -0,0 +1,18 @@
#include "Abilities.h"
#include <string>
namespace SBF {
using std::wstring;
const wstring& GetAbilityLabel(int abilityGroupId, int abilityId) {
switch (abilityGroupId) {
case kAbilityTalentsId:
return kTalents[abilityId];
case kAbilitySkillsId:
return kSkills[abilityId];
case kAbilityKnowledgesId:
return kKnowledges[abilityId];
}
return L"";
}
} // End namespace SBF