func GetTicks() uint32 { return uint32(C.SDL_GetTicks()) }
// Gets the number of milliseconds since the SDL library initialization. func GetTicks() uint32 { GlobalMutex.Lock() t := uint32(C.SDL_GetTicks()) GlobalMutex.Unlock() return t }