/// <summary>
        /// Starts task of listening for network comms and also starts task to update the queue in this with received comms
        /// </summary>
        public void StartListeningForNetworkComms(BattleParticipant actionsTarget)
        {
            commsManager.StartListening();

            StartRefreshingForNetworkComms();
        }
예제 #2
0
 public Action(BattleParticipant user) : this()
 {
     this.user = user;
 }