Test de communication de paquets entre un client et un serveur
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Constants.cs 209B

123456789
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class Constants
  5. {
  6. public const int TICKS_PER_SEC = 30;
  7. public const int MS_PER_TICKS = 1000 / TICKS_PER_SEC;
  8. }