Primer commit
This commit is contained in:
24
marcador.h
Executable file
24
marcador.h
Executable file
@@ -0,0 +1,24 @@
|
||||
#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;
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user