OpenPolygon  1.0.0
OpenPolygon is a Rendering Engine
basicrendermodul.h
1 #ifndef BASICRENDERMODUL_H
2 #define BASICRENDERMODUL_H
3 
4 #include "index.h"
5 #include "Interface/IShader.h"
6 #include "renderprocessmanager.h"
7 #include "scenemanager.h"
8 #include "shadowevent.h"
9 
10 namespace Engine
11 {
12 
14 {
15  public:
17  ~BasicRenderModul() = default;
18 
19  void renderProcess(const DrawEvent &event);
20 };
21 
22 }
23 
24 #endif // BASICRENDERMODUL_H
Definition: basicrendermodul.h:13
Definition: rendermodul.h:9
Definition: element.h:23
The DrawEvent - event class.
Definition: drawevent.h:31