11 lines
283 B
C++
11 lines
283 B
C++
#ifndef MARIO_VISITOR_GENERATOR_HPP
|
|
#define MARIO_VISITOR_GENERATOR_HPP
|
|
|
|
#include "../blocks.hpp"
|
|
|
|
std::shared_ptr<SDLPP::Visitor>
|
|
getVisitor(const MarioBlock &block, SDLPP::Scene &scene, int &coin_count,
|
|
std::vector<std::shared_ptr<MarioBlock>> &moving_objects);
|
|
|
|
#endif
|