basic building structures

This commit is contained in:
Victor Turgeon
2023-06-10 17:14:55 -04:00
parent e028b544c5
commit 3f3e39a40f
18 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using Godot;
public partial class arms_building : base_building
{
[Export]
public int Megaton { get; set; } = 1;
[Export]
public int Approval { get; set; } = -1;
}