-
Notifications
You must be signed in to change notification settings - Fork 14
/
Prefix.pch
39 lines (36 loc) · 1010 Bytes
/
Prefix.pch
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
28
29
30
31
32
33
34
35
36
37
38
39
/*
* This file is part of Deblock.
*
* Deblock is open software: you can use or modify it under the
* terms of the Java Research License or optionally a more
* permissive Commercial License.
*
* Deblock is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the Java Research License
* along with Deblock in the file named 'COPYING'.
* If not, see <http://stuff.lhunath.com/COPYING>.
*/
typedef enum DbMode {
DbModeClassic,
DbModeTimed,
} DbMode;
/**
* Global Dependencies.
*/
#ifdef __OBJC__
#define foo void foo();
#define bar blah
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "cocos2d.h"
#import "Logger.h"
#import "GLUtils.h"
#import "UIUtils.h"
#import "StringUtils.h"
#import "ObjectUtils.h"
#import "DebugLayer.h"
#import "DeblockConfig.h"
#endif