我有一些代码
// Includes, namespace and prototypes
#include "template.h"
#include "Global.h"
#include "Sprite.h"
#include "Gesture.h"
#include "Touch.h"
using namespace AGK;
Gesture currentGesture;
// Begin app, called once at the start
void app::Begin( void )
{
SetupEnvironment(ENV_ANDROID);
CreateBackground();
}
在这种情况下我将如何调用currentGesture
's 构造函数以便我可以使用它?我知道仅通过在上面定义它就不会调用它app::Begin
。