Пример #1
0
 protected override void onChar(CodePoint cp)
 {
     if (crow.ProcessKeyPress(cp.ToChar()))
     {
         return;
     }
 }
Пример #2
0
 public virtual bool ProcessKeyPress(char Key)
 {
     return(CrowInterface.ProcessKeyPress(Key));
 }
Пример #3
0
 void OpenTKGameWindow_KeyPress(object sender, OpenTK.KeyPressEventArgs e)
 {
     CrowInterface.ProcessKeyPress(e.KeyChar);
 }