Newer
Older
cneboy_games / rpg / grid.h
@Mark Bavis Mark Bavis on 20 Aug 2022 172 bytes Fix new level tag positioning
#include <stdint.h>
typedef enum
{
    GRID_FLIPX = 1,
    GRID_FLIPY = 2,
} grid_flags;

typedef struct
{
    uint8_t tile;
    grid_flags flags;
    char* tag;
} grid_t;