18 lines
280 B
C++
18 lines
280 B
C++
#pragma once
|
|
|
|
#include "game/info.hpp"
|
|
#include "game/sprite.hpp"
|
|
|
|
class Prota : public Sprite {
|
|
public:
|
|
explicit Prota(Jd8::Surface gfx);
|
|
|
|
void draw() override;
|
|
auto update() -> Uint8;
|
|
|
|
Uint8 frame_pejades;
|
|
bool pergami;
|
|
|
|
protected:
|
|
};
|