docs: Improve comments about Game

This commit is contained in:
Hajime Hoshi 2020-04-01 14:38:53 +09:00
parent 2ac8015165
commit 839809a5d4

5
run.go
View File

@ -33,10 +33,11 @@ type Game interface {
// Draw(screen *Image)
//
// With Draw (the recommended way), Update updates only the game logic and Draw draws the screen.
// In this case, the argument screen's updated content is not adopted for the actual game screen.
// In this case, the argument screen's updated content by Update is not adopted for the actual game screen,
// and the screen's updated content by Draw is adopted instead.
//
// Without Draw (the legacy way), Update updates the game logic and also draws the screen.
// In this case, the argument screen's updated content is adopted for the actual game screen.
// In this case, the argument screen's updated content by Update is adopted for the actual game screen.
Update(screen *Image) error
// Draw draws the game screen by one frame.