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 
9 #ifndef YAGE_CORE_BATCH_H
10 #define YAGE_CORE_BATCH_H
11 
12 namespace yage
13 {
14 
33 class Batch
34 {
35 public:
36  virtual bool init();
37  virtual void begin();
38  virtual void end();
39  virtual void render();
40 };
41 
42 } // namespace yage
43 
44 #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:33
virtual bool init()
virtual void render()
virtual void end()