Ejemplo n.º 1
0
        public void DispatchInputEvent(EngineNS.Input.Device.DeviceInputEventArgs args)
        {
            var ite = mUIHostList.GetEnumerator();

            while (ite.MoveNext())
            {
                if (ite.Current.Value.IsInputActive)
                {
                    ite.Current.Value.DispatchInputEvent(args);
                }
            }
        }
Ejemplo n.º 2
0
 partial void UIInputProcess(EngineNS.Input.Device.DeviceInputEventArgs e)
 {
     EngineNS.CEngine.Instance.UIManager.DispatchInputEvent(e);
 }