10 lines
141 B
C
10 lines
141 B
C
|
|
#ifndef TILE_H
|
||
|
|
#define TILE_H
|
||
|
|
#include "color.h"
|
||
|
|
typedef struct {
|
||
|
|
char simble;
|
||
|
|
color forground;
|
||
|
|
color background;
|
||
|
|
} tile;
|
||
|
|
#endif
|