Broke everything

This commit is contained in:
2018-01-04 14:20:56 -06:00
parent 66e68581f5
commit 3942097c6c
6 changed files with 330 additions and 39 deletions

16
lib/wavefront/object.rb Normal file
View File

@@ -0,0 +1,16 @@
class IMICFPS
class Wavefront
class Object
attr_reader :name
attr_accessor :vertexes, :texures, :normals, :faces
def initialize(name)
@name = name
@vertexes = []
@textures = []
@normals = []
@faces = []
end
end
end
end