blob: 4475778732785d4cee24d422af17d7090381fcf0 (
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;
|