Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. //
  2. // GameConfig.h
  3. // AmoebaPrototype
  4. //
  5. // Created by Brian Koenig on 5/5/11.
  6. // Copyright __MyCompanyName__ 2011. All rights reserved.
  7. //
  8.  
  9. #ifndef __GAME_CONFIG_H
  10. #define __GAME_CONFIG_H
  11.  
  12. //
  13. // Supported Autorotations:
  14. // None,
  15. // UIViewController,
  16. // CCDirector
  17. //
  18. #define kGameAutorotationNone 0
  19. #define kGameAutorotationCCDirector 1
  20. #define kGameAutorotationUIViewController 2
  21.  
  22. #define GAME_AUTOROTATION kGameAutorotationNone
  23.  
  24. #endif // __GAME_CONFIG_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement