Files
skevity/source/game_source/tile.h

11 lines
161 B
C

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