Test de communication de paquets entre un client et un serveur
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
123456789 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
-
- public class Constants
- {
- public const int TICKS_PER_SEC = 30;
- public const int MS_PER_TICKS = 1000 / TICKS_PER_SEC;
- }
|