Add fire mario mode

This commit is contained in:
2022-11-11 19:47:35 +01:00
parent d89712ebab
commit 3cde73d1ed
7 changed files with 55 additions and 12 deletions
+2
View File
@@ -9,10 +9,12 @@ public:
void custom_move(int ticks) override;
void setParent(MarioBlock *parent);
void handleVisitor(SDLPP::Visitor &visitor) override;
void setFireFlower(bool fire_flower);
private:
MarioBlock *_parent = nullptr;
bool _started_movement = false;
bool _fire_flower = false;
};
#endif