7 lines
99 B
TypeScript
7 lines
99 B
TypeScript
|
export const OPCODE = {
|
||
|
MOVE: 0x01,
|
||
|
SCROLL: 0x02,
|
||
|
KEY_DOWN: 0x03,
|
||
|
KEY_UP: 0x04,
|
||
|
} as const
|