-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathmain.m
More file actions
27 lines (24 loc) · 555 Bytes
/
Copy pathmain.m
File metadata and controls
27 lines (24 loc) · 555 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Created by Jesse Squires
// https://www.jessesquires.com
//
//
// Documentation
// https://jessesquires.github.io/JSQSystemSoundPlayer
//
//
// GitHub
// https://github.com/jessesquires/JSQSystemSoundPlayer
//
//
// License
// Copyright © 2013-present Jesse Squires
// Released under an MIT license: https://opensource.org/licenses/MIT
//
@import UIKit;
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}