Skip to content

Commit 3fe1871

Browse files
committed
Conform to common protocols
1 parent b7c7839 commit 3fe1871

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/GateEngine/Resources/Paths.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* http://stregasgate.com
66
*/
77

8-
public struct TexturePath: ExpressibleByStringLiteral, CustomStringConvertible {
8+
public struct TexturePath: Equatable, Hashable, Sendable, ExpressibleByStringLiteral, CustomStringConvertible {
99
public typealias StringLiteralType = String
1010
public var value: String
1111
public var description: String { value }
@@ -18,7 +18,7 @@ public struct TexturePath: ExpressibleByStringLiteral, CustomStringConvertible {
1818
public static var checkerPattern: TexturePath { "GateEngine/Textures/CheckerPattern.png" }
1919
}
2020

21-
public struct GeoemetryPath: ExpressibleByStringLiteral, CustomStringConvertible {
21+
public struct GeoemetryPath: Equatable, Hashable, Sendable, ExpressibleByStringLiteral, CustomStringConvertible {
2222
public typealias StringLiteralType = String
2323
public var value: String
2424
public var description: String { value }

0 commit comments

Comments
 (0)