Exemplo n.º 1
0
 public static void initialize(int size, SpriteBatch spriteBatch)
 {
     s_instance = new DrawBuffer(size, spriteBatch);
 }
Exemplo n.º 2
0
 public RenderThread()
 {
     m_drawBuffer = DrawBuffer.getInstance();
 }
Exemplo n.º 3
0
 public UpdateThread(Engine engine)
 {
     m_engine = engine;
     m_drawBuffer = DrawBuffer.getInstance();
 }