14 lines
175 B
D
14 lines
175 B
D
/// License: MIT
|
|
module sj.SceneInterface;
|
|
|
|
import sj.KeyInput;
|
|
|
|
///
|
|
interface SceneInterface {
|
|
public:
|
|
///
|
|
SceneInterface Update(KeyInput input);
|
|
///
|
|
void Draw();
|
|
}
|