예제 #1
0
파일: Scene.cs 프로젝트: dea6cat/Woofer
 public void InvokeInput()
 {
     //Console.WriteLine("input");
     Systems.InvokeInput();
 }
예제 #2
0
파일: Scene.cs 프로젝트: dncep/Woofer
 /// <summary>
 /// Called when input information should be processed.
 /// Delegates the call to all inner systems that are marked for input processing
 /// </summary>
 public virtual void InvokeInput()
 {
     Systems.Flush();
     Systems.InvokeInput();
 }