25 lines
505 B
C
25 lines
505 B
C
|
//
|
|||
|
// 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();
|
|||
|
void AppOnTapDown(int posx, int posy);
|
|||
|
void AppOnTapUp(int posx, int posy);
|
|||
|
void AppOnScroll(int shiftx, int shifty);
|
|||
|
void AppOnScale(float scale);
|
|||
|
void AppOnTapUpAfterMove(int posx, int posy);
|
|||
|
|
|||
|
|
|||
|
}
|