game/mario/visitors/visitor_generator.hpp
zv0n f137f6609f
All checks were successful
continuous-integration/drone/push Build is passing
Formatting
2022-09-28 13:57:13 +02:00

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