Пример #1
0
 public void SendEvent(GameEvent e)
 {
     // check if exists
     if (m_listener != null)
     {
         // handle event in parent
         m_listener.HandleEvent(e);
     }
 }