/templates/cocos2d-iphone/cocos2d/cocos2d.h

http://ashevillejam2011.googlecode.com/ · C++ Header · 133 lines · 72 code · 11 blank · 50 comment · 0 complexity · 8c4c06de9b43da13ce37e64489250bd2 MD5 · raw file

  1. /*
  2. * cocos2d for iPhone: http://www.cocos2d-iphone.org
  3. *
  4. * Copyright (c) 2008-2010 Ricardo Quesada
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. /** @mainpage cocos2d for iPhone API reference
  25. *
  26. * @image html Icon.png
  27. *
  28. * @section intro Introduction
  29. * This is cocos2d API reference
  30. *
  31. * The programming guide is hosted here: http://www.cocos2d-iphone.org/wiki/doku.php/prog_guide:index
  32. *
  33. * <hr>
  34. *
  35. * @todo A native english speaker should check the grammar. We need your help!
  36. *
  37. */
  38. // 0x00 HI ME LO
  39. // 00 00 99 04
  40. #define COCOS2D_VERSION 0x00009904
  41. //
  42. // all cocos2d include files
  43. //
  44. #import "ccConfig.h" // should be included first
  45. #import "CCBlockSupport.h"
  46. #import "CCAction.h"
  47. #import "CCCamera.h"
  48. #import "CCCameraAction.h"
  49. #import "CCProtocols.h"
  50. #import "CCNode.h"
  51. #import "CCDirector.h"
  52. #import "CCTouchDispatcher.h"
  53. #import "CCTouchDelegateProtocol.h"
  54. #import "CCInstantAction.h"
  55. #import "CCIntervalAction.h"
  56. #import "CCEaseAction.h"
  57. #import "CCLabel.h"
  58. #import "CCLayer.h"
  59. #import "CCMenu.h"
  60. #import "CCMenuItem.h"
  61. #import "CCParticleSystem.h"
  62. #import "CCPointParticleSystem.h"
  63. #import "CCQuadParticleSystem.h"
  64. #import "CCParticleExamples.h"
  65. #import "CCDrawingPrimitives.h"
  66. #import "CCScene.h"
  67. #import "CCScheduler.h"
  68. #import "CCSprite.h"
  69. #import "CCSpriteFrame.h"
  70. #import "CCSpriteSheet.h"
  71. #import "CCSpriteFrameCache.h"
  72. #import "CCTextureCache.h"
  73. #import "CCTransition.h"
  74. #import "CCTextureAtlas.h"
  75. #import "CCLabelAtlas.h"
  76. #import "CCAtlasNode.h"
  77. #import "CCEaseAction.h"
  78. #import "CCTiledGridAction.h"
  79. #import "CCGrabber.h"
  80. #import "CCGrid.h"
  81. #import "CCGrid3DAction.h"
  82. #import "CCGridAction.h"
  83. #import "CCBitmapFontAtlas.h"
  84. #import "CCParallaxNode.h"
  85. #import "CCActionManager.h"
  86. #import "CCTMXTiledMap.h"
  87. #import "CCTMXLayer.h"
  88. #import "CCTMXObjectGroup.h"
  89. #import "CCTMXXMLParser.h"
  90. #import "CCTileMapAtlas.h"
  91. #import "CCRenderTexture.h"
  92. #import "CCMotionStreak.h"
  93. #import "CCPageTurn3DAction.h"
  94. #import "CCPageTurnTransition.h"
  95. #import "CCTexture2D.h"
  96. #import "CCPVRTexture.h"
  97. #import "CCTouchHandler.h"
  98. #import "CCConfiguration.h"
  99. #import "CCRadialTransition.h"
  100. #import "CCProgressTimerActions.h"
  101. #import "CCPropertyAction.h"
  102. //
  103. // cocos2d macros
  104. //
  105. #import "ccTypes.h"
  106. #import "ccMacros.h"
  107. //
  108. // cocos2d helper files
  109. //
  110. #import "Support/OpenGL_Internal.h"
  111. #import "Support/EAGLView.h"
  112. #import "Support/CCFileUtils.h"
  113. #import "Support/CGPointExtension.h"
  114. #import "Support/ccCArray.h"
  115. #import "Support/CCArray.h"
  116. #if CC_ENABLE_PROFILERS
  117. #import "Support/CCProfiling.h"
  118. #endif // CC_ENABLE_PROFILERS
  119. // compatibility with v0.8
  120. #import "CCCompatibility.h"
  121. // free functions
  122. NSString * cocos2dVersion(void);