22 lines
242 B
C++
22 lines
242 B
C++
#pragma once
|
|
|
|
#include "game/sprite.hpp"
|
|
#include "game/info.hpp"
|
|
|
|
class Prota : public Sprite {
|
|
|
|
public:
|
|
|
|
Prota( JD8_Surface gfx );
|
|
|
|
void draw();
|
|
Uint8 update();
|
|
|
|
Uint8 frame_pejades;
|
|
bool pergami;
|
|
|
|
protected:
|
|
|
|
|
|
};
|