Tech stack stub page and changing project to be just one Web Assembly project for now
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
namespace WebAssembly.Data;
|
||||
|
||||
public class ResourceNode
|
||||
{
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string? Description { get; set; }
|
||||
public int? IncreaseFood { get; set; }
|
||||
public int? IncreaseProduction { get; set; }
|
||||
public int? IncreaseGold { get; set; }
|
||||
public int? IncreaseMana { get; set; }
|
||||
public int? IncreaseKnowledge { get; set; }
|
||||
public bool ForceEnableFarm { get; set; }
|
||||
public bool ForceEnableMine { get; set; }
|
||||
public bool ForceEnableQuarry { get; set; }
|
||||
public bool ForceEnableConduit { get; set; }
|
||||
public bool ForceEnableResearchPost { get; set; }
|
||||
public bool ForceEnableForester { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user