Descent.Messaging.Events.RerollDicesEventArgs.RerollDicesEventArgs C# (CSharp) Method

RerollDicesEventArgs() public method

public RerollDicesEventArgs ( int diceIds ) : System.Diagnostics.Contracts
diceIds int
return System.Diagnostics.Contracts
        public RerollDicesEventArgs(int[] diceIds)
        {
            Contract.Requires(diceIds != null);
            Contract.Requires(diceIds.Length > 0);
            DiceIds = diceIds;
        }

Same methods

RerollDicesEventArgs::RerollDicesEventArgs ( string stringArgs ) : System.Diagnostics.Contracts