class BaseCommand
Public Class Methods
new(gam_main_instance)
click to toggle source
# File managables/programs/game_aided_manufacturing/functions/base_command.rb, line 3 def initialize(gam_main_instance) @active = true @gam_main_instance = gam_main_instance end
Public Instance Methods
active?()
click to toggle source
# File managables/programs/game_aided_manufacturing/functions/base_command.rb, line 8 def active? @active end
finish()
click to toggle source
# File managables/programs/game_aided_manufacturing/functions/base_command.rb, line 12 def finish end
mouse_down(vector)
click to toggle source
# File managables/programs/game_aided_manufacturing/functions/base_command.rb, line 15 def mouse_down(vector) end
mouse_up(vector)
click to toggle source
# File managables/programs/game_aided_manufacturing/functions/base_command.rb, line 18 def mouse_up(vector) end