AnimEngine
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 
7  virtual void process(Scene& scene) = 0;
8 };
9 
10 #endif
Definition: SystemInterface.hpp:6
Definition: Scene.hpp:12