Private
Public Access
1
0

Initial Commit

This commit is contained in:
Jan Grießhaber
2025-12-28 18:48:24 +01:00
commit 149b085cb7
13 changed files with 296 additions and 0 deletions

20
research-stats.lua Normal file
View File

@@ -0,0 +1,20 @@
local researches = {}
---comment
---@param event EventData.on_research_finished
function onResearchFinished(event)
for id, tech in pairs(game.forces["player"].technologies) do
researches[id] = tech
end
end
---comment
---@param event EventData.on_research_started
function onResearchStarted(event)
end
---comment
---@param event EventData.on_research_queued
function onResearchQueued(event)
end