Christian Risi 8ae58929b0 V0.6.9.a Arroyo Toad
Fixed package visibility
2024-12-08 15:51:42 +00:00

17 lines
264 B
Swift

public struct Location {
public let x: UInt64
public let y: UInt64
public let z: UInt64
public init(
x: UInt64,
y: UInt64,
z: UInt64
) {
self.x = x
self.y = y
self.z = z
}
}