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

12 lines
196 B
Ruby

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