2013-02-06 20:37:32 +00:00
|
|
|
|
//
|
|
|
|
|
// Header.h
|
|
|
|
|
// doublehitballs
|
|
|
|
|
//
|
|
|
|
|
// Created by vvv ооо on 15.07.12.
|
|
|
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
//All of them can be found in SalmonEngineIos.cpp
|
|
|
|
|
//This header stores only declarations
|
|
|
|
|
|
|
|
|
|
namespace SE
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
void AppDeinit();
|
|
|
|
|
void AppUpdate(int dt);
|
|
|
|
|
void AppDraw();
|
2013-11-10 22:58:35 +00:00
|
|
|
|
void AppOnTapDown(int posx, int posy, int touchNumber);
|
|
|
|
|
void AppOnTapUp(int posx, int posy, int touchNumber);
|
|
|
|
|
void AppOnScroll(int shiftx, int shifty, int touchNumber);
|
2013-02-06 20:37:32 +00:00
|
|
|
|
void AppOnScale(float scale);
|
2013-11-10 22:58:35 +00:00
|
|
|
|
void AppOnTapUpAfterMove(int posx, int posy, int touchNumber);
|
2013-02-06 20:37:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|