mes granera

This commit is contained in:
2026-04-04 12:44:45 +02:00
parent 9e0ab87c76
commit 08ba88ec05
37 changed files with 115 additions and 104 deletions

23
source/game/marcador.hpp Normal file
View File

@@ -0,0 +1,23 @@
#pragma once
#include "core/jdraw8.hpp"
#include "game/info.hpp"
#include "game/prota.hpp"
class Marcador {
public:
Marcador( JD8_Surface gfx, Prota* sam );
~Marcador(void);
void draw();
protected:
void pintaNumero( Uint16 x, Uint16 y, Uint8 num );
JD8_Surface gfx;
Prota* sam;
};