updated stage draw configuration

This commit is contained in:
2024-10-23 13:59:07 +02:00
parent 816dad9caa
commit d784ab6e1d
5 changed files with 22 additions and 4 deletions
+4
View File
@@ -8,11 +8,15 @@ if id == 0 then
end
local dbLogger = Spearhead.LoggerTemplate:new("database", Spearhead.LoggerTemplate.LogLevelOptions.INFO)
local standardLogger = Spearhead.LoggerTemplate:new("", Spearhead.LoggerTemplate.LogLevelOptions.INFO)
local databaseManager = Spearhead.DB:new(dbLogger, debug)
local capConfig = Spearhead.internal.configuration.CapConfig:new();
local stageConfig = Spearhead.internal.configuration.StageConfig:new();
standardLogger:info("Using StageConfig: ".. stageConfig:toString())
Spearhead.internal.GlobalCapManager.start(databaseManager, capConfig, stageConfig)
Spearhead.internal.GlobalStageManager:NewAndStart(databaseManager, stageConfig)
Spearhead.internal.GlobalFleetManager.start(databaseManager)