Files
aee/source/game/engendro.hpp
2026-04-04 13:03:20 +02:00

15 lines
222 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;
};