mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-03 13:11:33 +00:00
9 lines
179 B
Swift
9 lines
179 B
Swift
public protocol RandomProvider {
|
|
associatedtype Output: FixedWidthInteger
|
|
|
|
static var min: Output { get }
|
|
static var max: Output { get }
|
|
|
|
mutating func next() -> Output
|
|
}
|