17 lines
264 B
Swift
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
|
|
}
|
|
}
|