class Bitmapped::Commands::BaseCommand
Public Instance Methods
command_id()
click to toggle source
# File lib/bitmapped/commands/base_command.rb, line 4 def command_id raise NotImplementedError.new("You must implement command_id.") end
process_command(pixels, args)
click to toggle source
# File lib/bitmapped/commands/base_command.rb, line 8 def process_command(pixels, args) raise NotImplementedError.new("You must implement process_command.") end