RafaelChefe/toy_robot

View on GitHub
lib/commands/base_command.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class BaseCommand
  def initialize(robot = nil, table = nil, position = nil)
    @robot = robot
    @table = table
    @position = position
  end
end