Updated data with sub-researches to have a more advanced Tech-tree and purpose to research.

This commit is contained in:
2026-05-09 11:54:25 +02:00
parent 6708aa277f
commit 8a79a3474e
5 changed files with 689 additions and 295 deletions
+6
View File
@@ -31,4 +31,10 @@ public class Research
return ResearchResult.RESEARCHING;
}
public static string GetReadableName(string input)
{
string noUnderscore = input.Replace("_", " ").ToLower();
return char.ToUpper(noUnderscore[0]) + noUnderscore.Substring(1);
}
}