示例#1
0
 /**
  * Constructor
  * @param application class, stored as reference
  */
 MotionStretchExampleApp(Application &app)
 : mApplication(app),
   mActorEffectsEnabled(false),
   mCurrentActorAnimation(0),
   mCurrentImage(0)
 {
   // Connect to the Application's Init signal
   app.InitSignal().Connect(this, &MotionStretchExampleApp::OnInit);
 }
示例#2
0
 PropertyButtonsController( Application& application )
 {
   // Connect to the Application's Init signal
   application.InitSignal().Connect( this, &PropertyButtonsController::Create );
 }