/// <inheritdoc />
 public Sub60PlayFinishedTechniqueCastCommand(byte clientId, TechniqueDefinitionData technique)
     : this()
 {
     Identifier = clientId;
     Technique  = technique;
 }
Esempio n. 2
0
 /// <summary>
 /// Creates a new technique cast with no targets.
 /// </summary>
 /// <param name="clientId"></param>
 /// <param name="technique"></param>
 public Sub60PlayerCastingTechniqueCommand(byte clientId, TechniqueDefinitionData technique, params TechniqueHitResult[] hits)
     : this(clientId, technique)
 {
     HitIdentifiers = hits;
 }