diff options
Diffstat (limited to 'Sources/Patterns/Tile.swift')
| -rw-r--r-- | Sources/Patterns/Tile.swift | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Sources/Patterns/Tile.swift b/Sources/Patterns/Tile.swift index 3893324..816ebc5 100644 --- a/Sources/Patterns/Tile.swift +++ b/Sources/Patterns/Tile.swift @@ -2,10 +2,10 @@ import SwiftUI public struct Tile: View { - let design: TileDesign - var pixelSize: CGFloat = 2.0; - var foregroundColor: Color = .black - var backgroundColor: Color = .white + public let design: TileDesign + public var pixelSize: CGFloat = 2.0; + public var foregroundColor: Color = .black + public var backgroundColor: Color = .white private var pixels: [Int] { design.pixels() |