2022-05-18 07:46:03 -04:00
|
|
|
package xyz.valnet.engine.scenegraph;
|
|
|
|
|
|
|
|
|
|
public interface IScene {
|
|
|
|
|
public void render();
|
|
|
|
|
public void update(float dTime);
|
|
|
|
|
|
2022-05-23 15:18:39 -04:00
|
|
|
public void mouseDown(int button);
|
|
|
|
|
public void mouseUp(int button);
|
|
|
|
|
|
2022-05-18 07:46:03 -04:00
|
|
|
public void enable();
|
|
|
|
|
public void disable();
|
|
|
|
|
}
|