Adding basic language support unfinished

This commit is contained in:
2022-12-15 21:11:37 -08:00
parent 2f48f61e9a
commit 5b48fb3901
22 changed files with 364 additions and 4 deletions

View File

@ -14,7 +14,8 @@ TextureAsset *assetTexture;
DawnGame::DawnGame(DawnHost *host) :
host(host),
renderManager(this),
inputManager(this)
inputManager(this),
languageManager(this)
{
}

View File

@ -15,6 +15,7 @@ namespace Dawn {
AssetManager assetManager;
InputManager inputManager;
TimeManager timeManager;
LanguageManager languageManager;
DawnGame(DawnHost *host);
int32_t init() override;