Test de communication de paquets entre un client et un serveur
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }