Initial commit

This commit is contained in:
2022-03-28 18:44:08 -04:00
commit e43d9a90e7
267 changed files with 17049 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using System.Collections.Generic;
using Model.Immortal.Entity;
namespace Model.Immortal.Economy;
public class EconomyModel {
public int Interval { get; set; } = 0;
public float Alloy { get; set; } = 0;
public float Ether { get; set; } = 0;
public float Pyre { get; set; } = 0;
public int Supply { get; set; } = 0;
public int WorkerCount { get; set; } = 6;
public int BusyWorkerCount { get; set; } = 0;
public int CreatingWorkerCount { get; set; } = 0;
public List<int> CreatingWorkerDelays { get; set; } = new();
public List<EntityModel> Harvesters { get; set; } = new();
}