Redid menus, stubbed Entity

This commit is contained in:
2019-09-30 20:49:41 -05:00
parent 31d96354f7
commit a44355a871
11 changed files with 214 additions and 112 deletions

13
lib/entity.rb Normal file
View File

@@ -0,0 +1,13 @@
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