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,31 @@
using Godot;
public partial class base_building : Node3D
{
[Export]
public Node3D BlocksNode { get; set; } = null;
private building_block[] _blocks = null;
[Export]
public string DisplayName { get; set; } = "base_building";
[Export]
public int KashCost { get; set; } = -1;
public bool IsPlaceable
{
get
{
return false;
}
}
public override void _Ready()
{
if (BlocksNode != null)
{
}
}
public override void _Process(double delta)
{
}
}