예제 #1
0
파일: display.go 프로젝트: gtalent/starfish
//Blocks until CloseDisplay is called, regardless of whether or not OpenDisplay has been called.
func Main() {
	go func() {
		for running {
			p.Draw()
			time.Sleep(time.Duration(drawInterval))
		}
	}()
	p.HandleEvents()
}
예제 #2
0
파일: display.go 프로젝트: gtalent/starfish
//Used to manually draw the screen.
func Draw() {
	p.Draw()
}