-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNation.cs
More file actions
48 lines (38 loc) · 757 Bytes
/
Nation.cs
File metadata and controls
48 lines (38 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MapEditor
{
public class Nation
{
public Nation(AxialCoord BaseCoord)
{
Vision = new List<CellMap>();
}
public void Update()
{
Army.VisionPoint = 3;
}
public void AddUnit()
{
}
public struct SUnit
{
public int VisionPoint;
public AxialCoord Coord;
}
public AxialCoord NationCoord;
public string TypeNation;
public string NameNation;
public int Experience, ExperienceMax, ExperienceGlobal;
public int PopulationCell;
public int RiskWinter;
public int RiskFamine;
public int RiskRevolution;
public int Gold;
public SUnit Army;
public List<CellMap> Vision;
}
}