dino/game_over_panel.h
2024-03-07 02:02:03 +03:00

25 lines
429 B
C

#ifndef GAME_OVER_PANEL_H
#define GAME_OVER_PANEL_H
#include <math.h>
#include "graphics.h"
#define GOP_TEXT_X 0
#define GOP_TEXT_Y 13
#define GOP_TEXT_WIDTH 191
#define GOP_TEXT_HEIGHT 11
#define GOP_RESTART_WIDTH 36
#define GOP_RESTART_HEIGHT 32
typedef struct {
int width;
int height;
} GameOverPanel;
extern GameOverPanel gameOverPanel;
void gameOverPanelInit(int width, int height);
void gameOverPanelDraw();
#endif