22 lines
278 B
Go
22 lines
278 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"opslag.de/schobers/geom"
|
|
"opslag.de/schobers/krampus19/alui"
|
|
)
|
|
|
|
type splash struct {
|
|
alui.Container
|
|
|
|
ctx *Context
|
|
atEnd bool
|
|
|
|
tick time.Duration
|
|
}
|
|
|
|
func (s *splash) Render(ctx *alui.Context, bounds geom.RectangleF32) {
|
|
s.atEnd = true
|
|
}
|