Files
game/mario/visitors/visitor_generator.hpp
T

12 lines
294 B
C++
Raw Normal View History

#ifndef MARIO_VISITOR_GENERATOR_HPP
#define MARIO_VISITOR_GENERATOR_HPP
#include "../blocks.hpp"
2021-10-18 10:10:43 +02:00
std::shared_ptr<SDLPP::Visitor>
2022-09-25 19:44:28 +02:00
getVisitor(const MarioBlock &block, SDLPP::Scene &scene,
2021-10-18 10:10:43 +02:00
int &coin_count,
std::vector<std::shared_ptr<MarioBlock>> &moving_objects);
#endif