Update Ghostgram features

This commit is contained in:
ichmagmaus 812
2026-03-07 18:15:32 +01:00
parent 1a3303b059
commit 24a7ec39d9
902 changed files with 148302 additions and 62355 deletions
@@ -45,12 +45,14 @@ public struct PresentationAppIcon: Equatable {
public let imageName: String
public let isDefault: Bool
public let isPremium: Bool
public let isSGPro: Bool
public init(name: String, imageName: String, isDefault: Bool = false, isPremium: Bool = false) {
public init(name: String, imageName: String, isDefault: Bool = false, isPremium: Bool = false, isSGPro: Bool = false) {
self.name = name
self.imageName = imageName
self.isDefault = isDefault
self.isPremium = isPremium
self.isSGPro = isSGPro
}
}