krampus19/cmd/krampus19/splash.go
Sander Schobers cc59236689 Added new tile graphics.
Added sprites for all textures.
Removed splash screen animation.
2019-12-27 22:54:00 +01:00

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
}