10 lines
138 B
GDScript3
10 lines
138 B
GDScript3
|
class_name CardValue
|
||
|
extends Node
|
||
|
|
||
|
var month: int
|
||
|
var type: int
|
||
|
|
||
|
func _init(month: int, type: int):
|
||
|
self.month = month
|
||
|
self.type = type
|