mes granera
This commit is contained in:
22
source/game/bola.hpp
Normal file
22
source/game/bola.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "game/sprite.hpp"
|
||||
#include "game/prota.hpp"
|
||||
#include "game/info.hpp"
|
||||
|
||||
class Bola : public Sprite {
|
||||
|
||||
public:
|
||||
|
||||
Bola( JD8_Surface gfx, Prota* sam );
|
||||
|
||||
void draw();
|
||||
void update();
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
Uint8 contador;
|
||||
Prota* sam;
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user