コード例 #1
0
ファイル: EventQueueTest.cs プロジェクト: boschbc/NaoRobot
 public void Setup()
 {
     Console.WriteLine("New EventQueue");
     q = new EventQueue();
     Console.WriteLine("New Tracker");
     t = new Tracker();
 }
コード例 #2
0
ファイル: EventQueueTest.cs プロジェクト: boschbc/NaoRobot
 public TEvent(Tracker t, Priority p)
 {
     this.t = t;
     this.p = p;
     this.ExecutionBehavior = ExecutionBehavior.Durative;
 }