Add backend projects with core models and tests, setup Godot frontend

This commit is contained in:
sokol
2026-02-20 21:01:09 +03:00
parent fc3ad9f6db
commit f320aa50ed
14 changed files with 518 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using Godot;
[GlobalClass]
public partial class GameData : Resource
{
[Export] public string CompanyName { get; set; } = "My Company";
[Export] public int StartYear { get; set; } = 1980;
[Export] public decimal StartingCash { get; set; } = 100000m;
// Настройки карты
[Export] public int CityCount { get; set; } = 10;
[Export] public bool EnableImports { get; set; } = true;
}