예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CustomMod"/> struct.
 /// </summary>
 /// <param name="type">The modifier type.</param>
 /// <param name="token">The modifier token type.</param>
 public CustomMod(CustomModType type, Token token)
     : this()
 {
     Type = type;
     Token = token;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CustomMod"/> struct.
 /// </summary>
 /// <param name="type">The modifier type.</param>
 /// <param name="token">The modifier token type.</param>
 public CustomMod(CustomModType type, Token token)
 {
     _type  = type;
     _token = token;
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CustomMod"/> struct.
 /// </summary>
 /// <param name="type">The modifier type.</param>
 /// <param name="token">The modifier token type.</param>
 public CustomMod(CustomModType type, Token token)
     : this()
 {
     Type  = type;
     Token = token;
 }