示例#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();
 }