Test de communication de paquets entre un client et un serveur
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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