Added common.h.

This commit is contained in:
Murilo Soares Pereira 2010-03-31 17:39:28 -03:00
parent 259f5ce2df
commit a7020e3a3f
2 changed files with 8 additions and 3 deletions

7
src/common.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef COMMON_H
#define COMMON_H
#define FALSE 0
#define TRUE 1
#endif

View File

@ -1,9 +1,7 @@
#include <ncurses.h>
#include <malloc.h>
#include <string.h>
#define FALSE 0
#define TRUE 1
#include "common.h"
#define CARD_FRAME_WIDTH 7
#define CARD_FRAME_HEIGHT 5