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

12
lib/zorder.rb Normal file
View File

@@ -0,0 +1,12 @@
class IMICRTS
class ZOrder
base_z = 5
enum = [
:GROUND_VEHICLE
]
enum.each_with_index do |constant, index|
self.const_set(constant, index + base_z)
end
end
end