engine/include/Utils/IosApi/IosWrapper.h

29 lines
628 B
C
Raw Normal View History

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
2017-02-26 23:26:42 +00:00
void SetBindDrawableFunc(void(*funcPtr)());
2013-02-06 20:37:32 +00:00
2017-02-26 23:26:42 +00:00
}