YAGE  v0.1.4.0
Yet Another Game Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
batch.h
Go to the documentation of this file.
1 #ifndef YAGE_CORE_BATCH_H
2 #define YAGE_CORE_BATCH_H
3 
4 namespace yage
5 {
6 
25 class Batch
26 {
27 public:
28  virtual bool init();
29  virtual void begin();
30  virtual void end();
31  virtual void render();
32 };
33 
34 } // namespace yage
35 
36 #endif
virtual void begin()
The Batch class will be the base class for all the different batching processes that might use differ...
Definition: batch.h:25
virtual bool init()
virtual void render()
virtual void end()