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

18
source/game/engendro.hpp Normal file
View File

@@ -0,0 +1,18 @@
#pragma once
#include "game/sprite.hpp"
class Engendro : public Sprite {
public:
Engendro( JD8_Surface gfx, Uint16 x, Uint16 y );
void draw();
bool update();
protected:
Uint8 vida;
};