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:
parent
1c3cdd5058
commit
7b5d8c2815
6 changed files with 27 additions and 23 deletions
|
@ -28,7 +28,10 @@ namespace SFML
|
|||
Close = 1 << 2,
|
||||
|
||||
/// <summary>Fullscreen mode (this flag and all others are mutually exclusive))</summary>
|
||||
Fullscreen = 1 << 3
|
||||
Fullscreen = 1 << 3,
|
||||
|
||||
/// <summary>Default window style (titlebar + resize + close)</summary>
|
||||
Default = Titlebar | Resize | Close
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
|
@ -47,7 +50,7 @@ namespace SFML
|
|||
/// <param name="title">Title of the window</param>
|
||||
////////////////////////////////////////////////////////////
|
||||
public Window(VideoMode mode, string title) :
|
||||
this(mode, title, Styles.Resize | Styles.Close, new ContextSettings(24, 8))
|
||||
this(mode, title, Styles.Default, new ContextSettings(24, 8))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue