12 lines
316 B
C++
12 lines
316 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, bool &quit,
|
||
|
int &coin_count,
|
||
|
std::vector< std::shared_ptr< MarioBlock > > &moving_objects );
|
||
|
|
||
|
#endif
|