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