okay new ux idea

This commit is contained in:
2025-08-27 23:22:39 -04:00
parent 8b1bfc8a01
commit 573396054f
8 changed files with 134 additions and 210 deletions

21
tools/spritedit/editor.go Normal file
View File

@@ -0,0 +1,21 @@
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")
}