miggor-StreamGraph/classes/deck/port.gd

12 lines
224 B
GDScript3
Raw Normal View History

class_name Port
var type: Deck.Types
var label: String
var descriptor: String
func _init(p_type: Deck.Types, p_label: String, p_descriptor: String = "") -> void:
type = p_type
label = p_label
descriptor = p_descriptor