This commit is contained in:
Marek Le
2026-05-09 23:37:26 +02:00
parent 6d28b04c12
commit 2d4002bd3f
263 changed files with 5250 additions and 4597 deletions

View File

@@ -0,0 +1,13 @@
class_name Building
extends Resource
enum Type { FLOOR, WALL, DOOR, ROOF }
@export var building_id: StringName = &""
@export var display_name: String = ""
@export var type: Type = Type.WALL
@export var size: Vector3 = Vector3(1, 1, 1)
@export var color: Color = Color.GRAY
@export var icon: Texture2D
@export var material_item: Item
@export var material_cost: int = 1