#ifndef __CC_APPLICATION_ANDROID_H__ #define __CC_APPLICATION_ANDROID_H__ #include "platform/CCCommon.h" #include "platform/CCApplicationProtocol.h" NS_CC_BEGIN class CC_DLL Application : public ApplicationProtocol { public: Application(); virtual ~Application(); /** @brief Callback by Director to limit FPS. @param interval The time, expressed in seconds, between current frame and next. */ void setAnimationInterval(double interval); /** @brief Run the message loop. */ int run(); /** @brief Get current application instance. @return Current application instance pointer. */ static Application* getInstance(); /** @deprecated Use getInstance() instead */ CC_DEPRECATED_ATTRIBUTE static Application* sharedApplication(); /** @brief Get current language config @return Current language config */ virtual LanguageType getCurrentLanguage(); /** @brief Get target platform */ virtual Platform getTargetPlatform(); protected: static Application * sm_pSharedApplication; }; NS_CC_END #endif // __CC_APPLICATION_ANDROID_H__