gg/context.go
2024-01-08 07:12:35 +03:00

17 lines
206 B
Go

package gg
type contextType int
const (
startContext contextType = iota
updateContext
eventContext
drawContext
deleteContext
)
type Context struct {
typ contextType
Events []any
*Engine
*Image
}