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/KeyInput.d

15 lines
207 B
D

/// License: MIT
module sj.KeyInput;
import std.typecons;
///
alias KeyInput = BitFlags!KeyInputType;
private enum KeyInputType {
left = 1 << 0,
right = 1 << 1,
up = 1 << 2,
down = 1 << 3,
}