Files
aee/marcador.h
Raimon Zamora 4a359c46f5 Primer commit
2014-12-30 22:46:46 +01:00

25 lines
326 B
C++
Executable File

#pragma once
#include "jdraw8.h"
#include "info.h"
#include "prota.h"
class Marcador {
public:
Marcador( JD8_Surface gfx, Info* info, Prota* sam );
~Marcador(void);
void draw();
protected:
void pintaNumero( Uint16 x, Uint16 y, Uint8 num );
JD8_Surface gfx;
Info* info;
Prota* sam;
};