예제 #1
0
파일: events.go 프로젝트: flazz/go-sdl2
// FlushEvent (https://wiki.libsdl.org/SDL_FlushEvent)
func FlushEvent(type_ uint32) {
	C.SDL_FlushEvent(C.Uint32(type_))
}
예제 #2
0
func FlushEvent(type_ uint32) {
	_type := (C.Uint32)(type_)
	C.SDL_FlushEvent(_type)
}