blob: 82a6f2fdb141a038060ee2109ab1f51ebca5ef9d (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { client } from "../client";
/**
* Triggered when the user click replay GOOOOO
* @param {KeyboardEvent} event
*/
export function onReplayGo(_event: Event) {
client.handleReplay();
}
window.onReplayGo = onReplayGo;
|