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