Did some reorganizing

This commit is contained in:
2018-03-20 15:11:00 -05:00
parent a3c92f9de3
commit 46f533f83e
9 changed files with 157 additions and 53 deletions

View File

@@ -0,0 +1,4 @@
class IMICFPS
class LightManager
end
end

View File

@@ -0,0 +1,20 @@
class IMICFPS
TextureCoordinate = Struct.new(:u, :v, :weight)
Vertex = Struct.new(:x, :y, :z, :weight)
Point = Struct.new(:x, :y)
Color = Struct.new(:red, :green, :blue, :alpha)
class ObjectManager
OBJECTS = []
def self.add_object(model)
OBJECTS << model
end
def self.find_object()
end
def self.objects
OBJECTS
end
end
end