game/sdlpp/sdlpp_visitor.hpp

20 lines
317 B
C++
Raw Normal View History

2021-04-25 11:57:33 +00:00
#ifndef SDLPP_HPP_VISITOR
#define SDLPP_HPP_VISITOR
#include "sdlpp_common.hpp"
namespace SDLPP {
class SDLPPSCOPE RenderObject;
class SDLPPSCOPE Visitor {
public:
Visitor() {}
virtual void visit( const RenderObject &obj ) = 0;
2021-04-26 19:57:31 +00:00
virtual void fromId( uint64_t id ) = 0;
2021-04-25 11:57:33 +00:00
};
} // namespace SDLPP
#endif