diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-28 22:23:36 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-28 22:23:36 +0200 |
| commit | ba4ee0edf2aba19ad73fa53cb01dd0fb9b527526 (patch) | |
| tree | 111357314127f7e05724b570ed9c6aad6f66e3a2 /Sources/Patterns/TileDesign.swift | |
| parent | 428153379e8653d38a1e9da441a06f0956492b2b (diff) | |
Use CoreGraphics to draw instead of SwifTUI2.0.0
Diffstat (limited to 'Sources/Patterns/TileDesign.swift')
| -rw-r--r-- | Sources/Patterns/TileDesign.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sources/Patterns/TileDesign.swift b/Sources/Patterns/TileDesign.swift index 5541102..84a8b00 100644 --- a/Sources/Patterns/TileDesign.swift +++ b/Sources/Patterns/TileDesign.swift @@ -13,7 +13,7 @@ public enum TileDesign: CaseIterable { case rhombus case balls - func pixels() -> [Int] { + func pixels() -> [UInt8] { switch self { case .grid: return [ |