clang-format

This commit is contained in:
2026-04-04 13:03:20 +02:00
parent 6a09d7219d
commit baee62b375
36 changed files with 2576 additions and 2408 deletions

View File

@@ -5,19 +5,15 @@
#include "game/prota.hpp"
class Marcador {
public:
Marcador(JD8_Surface gfx, Prota* sam);
~Marcador(void);
public:
void draw();
Marcador( JD8_Surface gfx, Prota* sam );
~Marcador(void);
void draw();
protected:
void pintaNumero( Uint16 x, Uint16 y, Uint8 num );
JD8_Surface gfx;
Prota* sam;
protected:
void pintaNumero(Uint16 x, Uint16 y, Uint8 num);
JD8_Surface gfx;
Prota* sam;
};