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

22
source/game/bola.hpp Normal file
View 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;
};