apple2048/game.c
2014-07-23 08:41:36 -05:00

51 lines
457 B
C

/*
* File: game.c
* Author: Jeremy Rand
* Date: July 23, 2014
*
* This file contains the implementation of the game logic.
*/
#include "game.h"
void initGame(void)
{
}
void slideInDirection(tDir dir)
{
}
tScore currentScore(void)
{
return 0;
}
tScore nextTarget(void)
{
return 0;
}
bool isGameWon(void)
{
return false;
}
bool isGameLost(void)
{
return false;
}
char *tileStringForPos(tPos x, tPos y)
{
return "";
}