Remove Locale (#808)

* Remove Locale (finally)
This commit is contained in:
David Markowitz
2022-11-27 16:56:55 -08:00
committed by GitHub
parent 3222e78815
commit 56da3f8543
9 changed files with 5 additions and 120 deletions

View File

@@ -48,7 +48,6 @@
#include "GameMessageHandler.h"
#include "GameMessages.h"
#include "Mail.h"
#include "dLocale.h"
#include "TeamManager.h"
#include "SkillComponent.h"
#include "DestroyableComponent.h"
@@ -68,7 +67,6 @@ namespace Game {
dpWorld* physicsWorld;
dChatFilter* chatFilter;
dConfig* config;
dLocale* locale;
std::mt19937 randomEngine;
AssetManager* assetManager;
@@ -223,7 +221,6 @@ int main(int argc, char** argv) {
//Set up other things:
Game::randomEngine = std::mt19937(time(0));
Game::locale = new dLocale();
//Run it until server gets a kill message from Master:
auto lastTime = std::chrono::high_resolution_clock::now();