SDL_systimer docs
This commit is contained in:
parent
dbe1891988
commit
41885b1e80
@ -4605,14 +4605,15 @@ namespace SDL2
|
|||||||
|
|
||||||
#region SDL_systimer.h
|
#region SDL_systimer.h
|
||||||
|
|
||||||
/* system timers rely on different OS mechanisms depending on which
|
/* System timers rely on different OS mechanisms depending on
|
||||||
* OS the library is compiled against */
|
* which operating system SDL2 is compiled against.
|
||||||
|
*/
|
||||||
|
|
||||||
/* delays the thread's processing based on the milliseconds parameter */
|
/* Delays the thread's processing based on the milliseconds parameter */
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern void SDL_Delay(UInt32 ms);
|
public static extern void SDL_Delay(UInt32 ms);
|
||||||
|
|
||||||
/* returns the milliseconds that have passed since SDL was initialized */
|
/* Returns the milliseconds that have passed since SDL was initialized */
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern UInt32 SDL_GetTicks();
|
public static extern UInt32 SDL_GetTicks();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user