私はいくつかのコードを持っています
// 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
て、それを利用するにはどうすればよいですか? 上記で定義しただけでは呼び出されないことがわかっていますapp::Begin
。