Files
skevity/source/game_source/tile.h

10 lines
141 B
C
Raw Permalink Normal View History

2026-03-16 13:22:59 -07:00
#ifndef TILE_H
#define TILE_H
#include "color.h"
typedef struct {
char simble;
color forground;
color background;
} tile;
#endif