ichigo/engine/fill.go
2021-08-08 11:46:03 +10:00

22 lines
295 B
Go

package engine
import (
"image/color"
"github.com/hajimehoshi/ebiten/v2"
)
// Fill fills the screen with a colour.
type Fill struct {
Color color.Color
Hidden bool
ID
ZPos
}
func (f *Fill) Draw(screen *ebiten.Image, _ ebiten.GeoM) {
if f.Hidden {
return
}
screen.Fill(f.Color)
}