You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
603 B
18 lines
603 B
using System.Collections.Generic; |
|
using Model.Entity; |
|
|
|
namespace Model.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> HarvestPoints { get; set; } = new(); |
|
} |