10 lines
181 B
C#
10 lines
181 B
C#
|
using Godot;
|
||
|
|
||
|
public partial class arms_building : base_building
|
||
|
{
|
||
|
[Export]
|
||
|
public int Megaton { get; set; } = 1;
|
||
|
[Export]
|
||
|
public int Approval { get; set; } = -1;
|
||
|
}
|