2023-12-20 22:39:33 +03:00
|
|
|
package gg
|
|
|
|
|
2024-01-08 06:09:36 +03:00
|
|
|
type contextType int
|
|
|
|
const (
|
|
|
|
startContext contextType = iota
|
|
|
|
updateContext
|
|
|
|
eventContext
|
|
|
|
drawContext
|
|
|
|
deleteContext
|
|
|
|
)
|
|
|
|
|
2023-12-20 22:39:33 +03:00
|
|
|
type Context struct {
|
2024-01-08 06:09:36 +03:00
|
|
|
typ contextType
|
|
|
|
events []any
|
2023-12-20 22:39:33 +03:00
|
|
|
*Engine
|
|
|
|
*Image
|
|
|
|
Event any
|
|
|
|
}
|