Fixed sfInput functions not properly exported in CSFML

Added the default window style to CSFML and SFML.Net

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1350 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-01-12 14:01:57 +00:00
parent 1c3cdd5058
commit 7b5d8c2815
6 changed files with 27 additions and 23 deletions

View file

@ -25,7 +25,7 @@ namespace SFML
/// <param name="title">Title of the window</param>
////////////////////////////////////////////////////////////
public RenderWindow(VideoMode mode, string title) :
this(mode, title, Styles.Resize | Styles.Close, new ContextSettings(24, 8))
this(mode, title, Styles.Default, new ContextSettings(24, 8))
{
}