mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
12 lines
232 B
Plaintext
12 lines
232 B
Plaintext
#ifdef SPARKLE
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "Sparkle.h"
|
|
#endif
|
|
|
|
void OSX_checkForUpdates() {
|
|
#ifdef SPARKLE
|
|
SUUpdater* updater = [[SUUpdater alloc] init];
|
|
[[SUUpdater sharedUpdater] checkForUpdatesInBackground];
|
|
#endif
|
|
}
|