Clone of Akilla's ac2d @ https://github.com/deregtd/AC2D

RenderEventAbstractor.h 260B

12345678910111213
  1. #ifndef RENDEREVENTABSTRACTOR_H
  2. #define RENDEREVENTABSTRACTOR_H
  3. #include "Interfaces/IRenderEvent.h"
  4. template< class T >
  5. class RenderEventAbstractor : public IRenderEvent
  6. {
  7. public:
  8. virtual bool OnRender( IWindow &Window, double TimeSlice ) = 0;
  9. };
  10. #endif