AnimEngine
src
systems
SystemInterface.hpp
1
#pragma once
2
#ifndef KJY_ANIM_ENGINE_SYSTEM_INTERFACE_HPP_
3
#define KJY_ANIM_ENGINE_SYSTEM_INTERFACE_HPP_
4
#include "world/Scene.hpp"
5
6
struct
SystemInterface
{
7
virtual
void
process(
Scene
& scene) = 0;
8
};
9
10
#endif
SystemInterface
Definition:
SystemInterface.hpp:6
Scene
Definition:
Scene.hpp:12
Generated by
1.8.13