/******************************************************************************/
#include "stdafx.h"
#include "$$headers.h"
/******************************************************************************/
Button button[3][3];
/******************************************************************************/
void InitPre()
{
DataPath(L"../../../../Data");
Paks.add(L"engine.pak");
App.name(L"Tic Tac Toe - Esenthel"); // App Name
D.mode(800, 600, false); // 800x600 Window
}
bool Init()
{
for(int x; x<3; x++)
for(int y; y<3; y++)
button[x,y].create(Rect((-0.75)+(::5*x),(-0.75)+(::5*y), 0.5, 0.5), S+(x*y));
return true;
}
void Shut()
{
}
/******************************************************************************/
bool Update()
{
if(Kb.bp(KB_ESC))return false;
return true;
}
void Draw()
{
D.clear(TURQ);
D.text (0,0,L"Welcome to new generation of programming!");
Gui.draw();
}
/******************************************************************************/
// CLASS STATIC MEMBERS
/******************************************************************************/
// CLASS METHODS
/******************************************************************************/