Skip to content

Commit

Permalink
Added MoveId in MatchMove.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael El Baki committed Dec 12, 2017
1 parent 05f22a0 commit 0ee9cb8
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions CotcSdk/HighLevel/Match.cs
Expand Up @@ -331,12 +331,17 @@ public enum MatchStatus {
/// @ingroup match_classes
/// <summary>Represents a move in a match.</summary>
public class MatchMove {
/// <summary>The data passed by the player when performing the move.</summary>
/// <summary>The data passed by the player when performing the move.</summary>
public Bundle MoveId;

/// <summary>The data passed by the player when performing the move.</summary>
public Bundle MoveData;
/// <summary>The ID of the player who made the move.</summary>
public string PlayerId;

/// <summary>The ID of the player who made the move.</summary>
public string PlayerId;

internal MatchMove(string Id, string playerId, Bundle moveData) {
MoveId = Id;
MoveData = moveData;
PlayerId = playerId;
}
Expand Down

0 comments on commit 0ee9cb8

Please sign in to comment.