game/mario/visitors/visitor_generator.hpp
zv0n 4109cfe1af
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Mario: add basic big mario logic
2022-09-25 19:44:28 +02:00

12 lines
294 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