starship/level.h

28 lines
416 B
C
Raw Permalink Normal View History

2025-03-08 10:08:44 -05:00
#ifndef LEVEL_H
#define LEVEL_H
typedef struct Level Level;
2025-03-09 10:49:50 -04:00
typedef struct FourIndices FourIndices;
2025-03-08 10:08:44 -05:00
2025-03-09 10:49:50 -04:00
#include <raylib.h>
2025-03-08 10:08:44 -05:00
#include "game.h"
struct Level {
char *data;
size_t data_size;
int length;
int width;
Game *game;
};
2025-03-09 10:49:50 -04:00
struct FourIndices {
size_t index[4];
};
2025-03-08 13:22:05 -05:00
void init_level(Game *g, Level *l, char *filepath);
2025-03-08 10:08:44 -05:00
void draw_level(Level *l);
2025-03-09 10:49:50 -04:00
FourIndices rect_corners(Level *l, Rectangle r);
2025-03-08 10:08:44 -05:00
#endif