Files
i-mic-rts/lib/entity.rb
2019-09-30 20:49:41 -05:00

13 lines
256 B
Ruby

class IMICRTS
class Entity
def initialize(images:, position:, angle:)
@images = images
@position = position
@angle = angle
end
def draw
@images.draw_rot(@position.x, @position.y, @position.z, @angle)
end
end
end