mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-03 05:10:57 +00:00
7 lines
169 B
Swift
7 lines
169 B
Swift
public struct Material: Hashable {
|
|
public var ambient: Color<Float>
|
|
public var diffuse: Color<Float>
|
|
public var specular: Color<Float>
|
|
public var gloss: Float
|
|
}
|