コード例 #1
0
 void Start()
 {
     servCon = FindObjectOfType <ServerContacts>();
 }
コード例 #2
0
 public void WantsAttack(ServerContacts serv)
 {
     recAt = new ReciveAttack(serv.ReciveAtcReq);
     phList.peer.OpCustom(2, new Dictionary <byte, object>(), true);
     Debug.Log("Send attack request");
 }
コード例 #3
0
 void Start()
 {
     cam     = GetComponent <Camera>();
     servCon = FindObjectOfType <ServerContacts>();
 }
コード例 #4
0
 //Отправка запроса на инициализацию боя
 public void FightStarting(ServerContacts serv)
 {
     ret = new ReciveInic(serv.Inicil);
     phList.peer.OpCustom(1, new Dictionary <byte, object>(), true);
     Debug.Log("Send inic recuest");
 }