This repository has been archived on 2020-09-30. You can view files and clone it, but cannot push or open issues or pull requests.
odyssey-old/Classes/UICommand.gd

11 lines
158 B
GDScript

class_name UICommand
enum CommandType {
SetShipTarget
}
var cmd_type = null
var cmd_args = []
func _init(_type, _args):
cmd_type = _type
cmd_args = _args