#ifndef TILE_H #define TILE_H #include "color.h" typedef struct { char simble; color forground; color background; } tile; #endif