Exemple #1
0
        private void OnPlayerActionsDetected(HMessage obj)
        {
            var args = new PlayerActionsDetectedEventArgs(obj);

            MessageBox.Show(args.ToString());
            foreach (IHPlayerAction Action in args.PlayerActions)
            {
                // Action.
            }
        }
Exemple #2
0
 private void OnPlayerActionsDetected(HMessage obj)
 {
     var args = new PlayerActionsDetectedEventArgs(obj);
     MessageBox.Show(args.ToString());
     foreach (IHPlayerAction Action in args.PlayerActions)
     {
         // Action.
     }
 }