Created
December 8, 2019 16:39
-
-
Save floriangbh/c53f69d36cc9e055c5943b4b91243b1f to your computer and use it in GitHub Desktop.
Layout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Layout { | |
enum Type { | |
case layout1 | |
case layout2 | |
case layout3 | |
} | |
var type: Type = .layout1 | |
var images: [UIImage?] = [nil, nil, nil, nil] | |
var imageGrid: [[UIImage] { | |
return [] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment