예제 #1
0
 /// <summary>
 /// Start a Jump Action
 /// </summary>
 /// <param name="JumpType">enum[long, high]</param>
 public void StartJump(SumoEnumGenerated.Jump_type JumpType)
 {
     this.sender.Send(SumoCommandsGenerated.Animations_Jump_cmd(JumpType)); // Commands.Jump_cmd(JumpType));
 }
예제 #2
0
 /// <summary>
 /// Animations_Jump
 ///
 /// Request a jump
 ///
 ///
 /// args : enum
 /// </summary>
 public static byte[] Animations_Jump_cmd(SumoEnumGenerated.Jump_type type)
 {
     return(StructConverter.Pack("<BBHI", 3, 2, 3, (UInt16)type));
 }