Files
games/tools/spritedit/editor.go
2025-08-28 08:33:31 -04:00

22 lines
392 B
Go

package main
import "github.com/hajimehoshi/ebiten/v2"
type editor struct {
}
func (e *editor) Update() error {
//TODO implement me
panic("implement me")
}
func (e *editor) Draw(screen *ebiten.Image) {
//TODO implement me
panic("implement me")
}
func (e *editor) Layout(outsideWidth, outsideHeight int) (screenWidth, screenHeight int) {
//TODO implement me
panic("implement me")
}