Primer commit

This commit is contained in:
Raimon Zamora
2014-12-30 22:46:46 +01:00
commit 4a359c46f5
33 changed files with 2778 additions and 0 deletions

23
bola.h Executable file
View File

@@ -0,0 +1,23 @@
#pragma once
#include "sprite.h"
#include "prota.h"
#include "info.h"
class Bola : public Sprite {
public:
Bola( JD8_Surface gfx, Info* info, Prota* sam );
void draw();
void update();
protected:
Uint8 contador;
Prota* sam;
Info* info;
};