const moveSnake = (event: React.KeyboardEvent) => { const { key } = event; // Check if key is arrow key if ( key === 'ArrowUp' || key ...
確定! 回上一頁