eliminats tots els #ifndef. Sembla que #pragma once ja funciona, no com fa quatre anys 😌

This commit is contained in:
2024-07-26 10:45:29 +02:00
parent 89cea1c93e
commit 9886f314b5
32 changed files with 33 additions and 185 deletions

View File

@@ -9,8 +9,12 @@
#include "const.h"
#include "lang.h"
#ifndef SCOREBOARD_H
#define SCOREBOARD_H
enum scoreboard_modes_e
{
scoreboard_mode_playing,
scoreboard_mode_game_over,
scoreboard_mode_demo,
};
// Clase Scoreboard
class Scoreboard
@@ -104,5 +108,3 @@ public:
// Establece el valor de la variable
void setPos(SDL_Rect rect);
};
#endif