eb8834324e
Game state struct ends the variable mess in main.c
10 lines
173 B
C
10 lines
173 B
C
#pragma once
|
|
#include <raylib.h>
|
|
#include "game.h"
|
|
|
|
#define TILE_SIZE 100
|
|
#define TILE_SPACING 10
|
|
#define BOARD_MARGIN 50
|
|
|
|
void handle_mouse_input(GameState_t *game_state);
|