kolibrios/programs/games/2048/game.h
raandoom 9f16c89604 2048: source files added
git-svn-id: svn://kolibrios.org@5229 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-11 20:14:23 +00:00

31 lines
439 B
C

#ifndef GAME_H
#define GAME_H
#include "defines.h"
#include "board.h"
static const char header[] = "2048";
static struct process_table_entry proc_info = {0};
#define NEW_GAME_BUTTON (0xFF)
// Start a new game
void game_init();
// Redraw game content
void game_redraw();
// Move Up
void game_move_up();
// Move Down
void game_move_down();
// Move Left
void game_move_left();
// Move Right
void game_move_right();
#endif // GAME_H