14 lines
221 B
C++
14 lines
221 B
C++
#pragma once
|
|
|
|
#include "game/sprite.hpp"
|
|
|
|
class Engendro : public Sprite {
|
|
public:
|
|
explicit Engendro(JD8_Surface gfx, Uint16 x, Uint16 y);
|
|
|
|
auto update() -> bool;
|
|
|
|
protected:
|
|
Uint8 vida;
|
|
};
|