Renamed WindowSettings to ContextSettings in SFML.Net

Removed the Window.Events property in SFML.Net
FS#124 - Fix KeyEvent.Alt/Control/Shift members not working, in SFML.Net

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1179 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2009-07-17 07:57:28 +00:00
parent 07c0318493
commit 34817446c0
6 changed files with 32 additions and 51 deletions

View file

@ -20,9 +20,9 @@ namespace SFML
public KeyEventArgs(KeyEvent e)
{
Code = e.Code;
Alt = e.Alt;
Control = e.Control;
Shift = e.Shift;
Alt = e.Alt != 0;
Control = e.Control != 0;
Shift = e.Shift != 0;
}
/// <summary>Code of the key (see KeyCode enum)</summary>