mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-04 05:31:34 +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
|
|
}
|