mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-16 16:12:35 +00:00
14 lines
364 B
Ruby
14 lines
364 B
Ruby
class IMICFPS
|
|
class Wavefront
|
|
class Material
|
|
attr_accessor :name, :ambient, :diffuse, :specular
|
|
def initialize(name)
|
|
@name = name
|
|
@ambient = Wavefront::Model::Color.new(1, 1, 1, 1)
|
|
@diffuse = Wavefront::Model::Color.new(1, 1, 1, 1)
|
|
@specular= Wavefront::Model::Color.new(1, 1, 1, 1)
|
|
end
|
|
end
|
|
end
|
|
end
|