mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
Broke everything
This commit is contained in:
16
lib/wavefront/object.rb
Normal file
16
lib/wavefront/object.rb
Normal 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
|
||||
Reference in New Issue
Block a user