예제 #1
0
 private static void TestGate(SequentialGate gate)
 {
     if (!gate.TestGate())
     {
         Console.WriteLine("bugbug");
     }
 }
예제 #2
0
파일: Clock.cs 프로젝트: alongigi/Memory
 public static void RegisterSequentialGate(SequentialGate g)
 {
     m_cClock.Register(g);
 }
예제 #3
0
파일: Clock.cs 프로젝트: alongigi/Memory
 private void Register(SequentialGate g)
 {
     m_lListeners.Add(g);
 }