WIP phase 39: school owners, my/others menu, guest restrictions.

This commit is contained in:
Leonid Pershin
2026-08-20 07:58:12 +03:00
parent 40929aa3ce
commit 26be7c87f8
27 changed files with 919 additions and 81 deletions
+5 -2
View File
@@ -10,8 +10,11 @@ public sealed class SimulationOptions
/// <summary>Fixed simulation steps per second.</summary>
public int TickRate { get; set; } = 20;
/// <summary>How many schools may exist at the same time.</summary>
public int MaxSchools { get; set; } = 6;
/// <summary>How many schools one player may own at the same time.</summary>
public int MaxSchools { get; set; } = 2;
/// <summary>How many school workers the process may run at once.</summary>
public int MaxSchoolsTotal { get; set; } = 16;
/// <summary>Base speed of the game clock: real seconds are multiplied by this many game minutes.</summary>
public double GameMinutesPerRealSecond { get; set; } = 1d;