Files
skevity/source/game_source/tile.h

10 lines
141 B
C

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