Ejemplo n.º 1
0
 public JThread(SceneMenu sm)
 {
     this.m_runnable = (Runnable)sm;
     this.init();
 }
Ejemplo n.º 2
0
 public JThread(SceneGame sg)
 {
     this.m_runnable = (Runnable)sg;
     this.init();
 }
Ejemplo n.º 3
0
 public JThread()
 {
     this.m_runnable = (Runnable)this;
     this.init();
 }