10 lines
363 B
GDScript
10 lines
363 B
GDScript
extends Resource
|
|
class_name Currency
|
|
|
|
@export var name: String
|
|
@export var production: Array[Production]
|
|
@export_multiline var description = "no description of currency"
|
|
@export var thumbnail: Texture2D
|
|
@export var color: Color = Color.PINK
|
|
@export var wants: Array[Production]
|
|
@export var commands: Array[Command] = [preload("res://commands/move_command.tres")]
|