mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
11 lines
224 B
GDScript
11 lines
224 B
GDScript
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
|