This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Подключаемся к серверу | |
| const socket = io(); | |
| // Настройка Canvas | |
| const canvas = document.getElementById('gameCanvas'); | |
| const ctx = canvas.getContext('2d'); | |
| // ★★★ ОГРАНИЧИТЕЛЬ ЧАСТОТЫ ОТПРАВКИ ★★★ | |
| let lastSendTime = 0; | |
| const SEND_INTERVAL = 100; |