7 lines
137 B
GDScript
7 lines
137 B
GDScript
extends Action
|
|
class_name ActionRPSMove
|
|
|
|
var move: String # rock | paper | scissors
|
|
|
|
func _init(move: String) -> void:
|
|
self.move = move
|