reimplement aether stuff from personal repo

This commit is contained in:
Bonnie
2026-03-03 11:12:53 -06:00
parent 4d04f408d7
commit afb8090812
129 changed files with 4352 additions and 591 deletions

View File

@@ -166,6 +166,13 @@ LPCWSTR StringTable::getString(int id)
return L"";
}
void StringTable::registerString(int id, const wstring &value)
{
if (id >= (int)m_stringsVec.size())
m_stringsVec.resize(id + 1, L"");
m_stringsVec[id] = value;
}