This repository has been archived on 2022-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
shapes-juke/src/sj/SceneInterface.d

14 lines
175 B
D

/// License: MIT
module sj.SceneInterface;
import sj.KeyInput;
///
interface SceneInterface {
public:
///
SceneInterface Update(KeyInput input);
///
void Draw();
}