Files
aee/source/game/engendro.hpp
2026-04-04 12:44:45 +02:00

19 lines
214 B
C++

#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;
};