Mutually_Assured_Destruction/buildings/arms_building.cs

10 lines
168 B
C#
Raw Normal View History

2023-06-10 17:14:55 -04:00
using Godot;
public partial class arms_building : base_building
{
2023-06-11 14:49:51 -04:00
[Export]
public int Megaton { get; set; } = 1;
[Export]
public int Approval { get; set; } = 1;
2023-06-10 17:14:55 -04:00
}