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