ProcessKey() public method

public ProcessKey ( int key, bool isdown ) : void
key int
isdown bool
return void
Example #1
0
 private void Leveleditor_KeyDown(object sender, KeyEventArgs e)
 {
     SceneMan.ProcessKey(e.KeyValue, true);
     status.Text = DirectXGlobal.Cam.pos.ToString();
 }