everything_has_a_price_jam/currency/production.gd
2026-09-25 21:22:03 -06:00

11 lines
162 B
GDScript

extends Resource
class_name Production
enum Type {
Produce,
Consume,
}
@export var type = Type.Produce
@export var currency: Currency
@export var amount: int