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
/** | |
* https://gist.github.com/tadija/7668382ef3e14cb304b31b6273ae8f65 | |
* Revision 2 | |
* Copyright © 2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import Foundation | |
public struct AEStoredWrapper { |
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
/** | |
* https://gist.github.com/tadija/55377d1211d0dc0bc2da661a455fc7c6 | |
* Revision 3 | |
* Copyright © 2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import Foundation | |
/// A namespace that encapsulates the shared "environment" of an app. |
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
/** | |
* https://gist.github.com/tadija/8c307aa9a0590ab946c0715ebe8a50b2 | |
* Revision 2 | |
* Copyright © 2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import Foundation | |
import Combine |
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
/** | |
* https://gist.github.com/tadija/9ea941c3055281a2a349072cf0453f50 | |
* Copyright © 2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import SwiftUI | |
public struct SnapshotTrigger { | |
public var trigger: Bool = false |
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
/** | |
* https://gist.github.com/tadija/f525e0c544fae45fc43a50711a392356 | |
* Copyright © 2018-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import AudioToolbox | |
import AVFoundation | |
public final class AESound { |
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
/** | |
* https://gist.github.com/tadija/79d10786e93bd127eb79ae8772235c4d | |
* Copyright © 2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import GameKit | |
import Combine | |
open class AEGameCenter: NSObject { |
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
/** | |
* https://gist.github.com/tadija/2fa1a99ccf3413cd0e30e3633e1a32db | |
* Revision 18 | |
* Copyright © 2020-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import SwiftUI | |
import Combine |
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
/** | |
* https://gist.github.com/tadija/76dceb3a6a52158f0a73b83bda27c481 | |
* Revision 4 | |
* Copyright © 2020-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import Foundation | |
open class AEKeychain<Key: RawRepresentable> where Key.RawValue == String { |
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
/** | |
* https://gist.github.com/tadija/69055043ee29afe736ae979d0d6a7645 | |
* Revision 3 | |
* Copyright © 2018-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import Foundation | |
public extension Data { |
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
/** | |
* https://gist.github.com/tadija/c48177e26b76b541ee6ee620e15d407a | |
* Revision 4 | |
* Copyright © 2020-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import Foundation | |
public struct AEVersion: CustomStringConvertible { |
NewerOlder