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