Fixed bug in the Listener class in SFML.Net

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1177 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2009-07-14 21:40:42 +00:00
parent ac773e8161
commit 9baa774216
4 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -62,10 +62,10 @@ namespace SFML
static extern void sfListener_GetPosition(out float X, out float Y, out float Z);
[DllImport("csfml-audio"), SuppressUnmanagedCodeSecurity]
static extern void sfListener_GetDirection(float X, float Y, float Z);
static extern void sfListener_SetDirection(float X, float Y, float Z);
[DllImport("csfml-audio"), SuppressUnmanagedCodeSecurity]
static extern void sfListener_SetDirection(out float X, out float Y, out float Z);
static extern void sfListener_GetDirection(out float X, out float Y, out float Z);
#endregion
}
}