Module: RubyArena::Movable

Included in:
Bullet, Robot
Defined in:
lib/ruby_arena/movable.rb

Instance Method Summary collapse

Instance Method Details

#moveObject



3
4
5
6
# File 'lib/ruby_arena/movable.rb', line 3

def move
  @x += offset_x(heading, speed)
  @y += offset_y(heading, speed)
end