mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
17 lines
300 B
Ruby
17 lines
300 B
Ruby
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
|