2021-08-04 22:32:17 +00:00
|
|
|
#ifndef MARIO_VISITOR_GENERATOR_HPP
|
|
|
|
#define MARIO_VISITOR_GENERATOR_HPP
|
|
|
|
|
|
|
|
#include "../blocks.hpp"
|
|
|
|
|
2021-10-18 08:10:43 +00:00
|
|
|
std::shared_ptr<SDLPP::Visitor>
|
2022-09-28 11:57:13 +00:00
|
|
|
getVisitor(const MarioBlock &block, SDLPP::Scene &scene, int &coin_count,
|
2021-10-18 08:10:43 +00:00
|
|
|
std::vector<std::shared_ptr<MarioBlock>> &moving_objects);
|
2021-08-04 22:32:17 +00:00
|
|
|
|
|
|
|
#endif
|