Exemple #1
0
// Waits a specified number of milliseconds before returning.
func Delay(ms uint32) { C.SDL_Delay(C.Uint32(ms)) }
Exemple #2
0
func Delay(_ticks uint32) {
	C.SDL_Delay(C.Uint32(_ticks))
}
Exemple #3
0
func Delay(ms uint32) {
	_ms := (C.Uint32)(ms)
	C.SDL_Delay(C.Uint32(_ms))
}