class World

Attributes

robot[RW]
table[RW]

Public Class Methods

new() click to toggle source
# File lib/r3d3/models/world.rb, line 8
def initialize
  # One world contains only a single table and a single Robot
  @table ||= Table.new
  @robot ||= Robot.new
end