Used to inform an app how many window instances per type that can be created.
@since SDL 6.0
Init with required parameters
- (nonnull instancetype)initWithType:(nonnull SDLWindowType)type
maximumNumberOfWindows:(UInt32)maximumNumberOfWindows;
init(type: SDLWindowType, maximumNumberOfWindows: UInt32)
Type of windows available, to create.
Number of windows available, to create.
Type of windows available, to create.
Required
@property (nonatomic, strong) SDLWindowType _Nonnull type;
var type: SDLWindowType { get set }
Number of windows available, to create.
Required
@property (nonatomic, strong) NSNumber<SDLInt> *_Nonnull maximumNumberOfWindows;
var maximumNumberOfWindows: NSNumber & SDLInt { get set }