示例#1
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified priority and execution behavior.
 /// </summary>
 /// <param name="p">A priority. Either Low, Medium or High.</param>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 protected NaoEvent(Priority p, ExecutionBehavior e)
     : this()
 {
     Priority = p;
     ExecutionBehavior = e;
 }
示例#2
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified priority and execution behavior.
 /// </summary>
 /// <param name="p">A priority. Either Low, Medium or High.</param>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 protected NaoEvent(Priority p, ExecutionBehavior e)
     : this()
 {
     Priority          = p;
     ExecutionBehavior = e;
 }
示例#3
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified execution behavior.
 /// </summary>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 protected NaoEvent(ExecutionBehavior e)
     : this()
 {
     ExecutionBehavior = e;
 }
示例#4
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified execution behavior.
 /// </summary>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 protected NaoEvent(ExecutionBehavior e)
     : this()
 {
     ExecutionBehavior = e;
 }
示例#5
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified priority and execution behavior.
 /// </summary>
 /// <param name="p">A priority. Either Low, Medium or High.</param>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 public ReportBackEvent(Priority p, ExecutionBehavior e) : base(p, e)
 {
 }
示例#6
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified execution behavior.
 /// </summary>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 public ReportBackEvent(ExecutionBehavior e) : base(e)
 {
 }
示例#7
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified priority and execution behavior.
 /// </summary>
 /// <param name="p">A priority. Either Low, Medium or High.</param>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 public ReportBackEvent(Priority p, ExecutionBehavior e)
     : base(p, e)
 {
 }
示例#8
0
 /// <summary>
 /// Creates an empty NaoEvent instance with the specified execution behavior.
 /// </summary>
 /// <param name="e">A behavior. Either Durative or Instantaneous.</param>
 public ReportBackEvent(ExecutionBehavior e)
     : base(e)
 {
 }