18 lines
271 B
C++
18 lines
271 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;
|
|
Uint8 update();
|
|
|
|
Uint8 frame_pejades;
|
|
bool pergami;
|
|
|
|
protected:
|
|
};
|