This commit is contained in:
2025-08-18 14:57:01 -04:00
parent 627ca88732
commit ee69afdb02
9 changed files with 155 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
package elements
import (
"context"
"github.com/hajimehoshi/ebiten/v2"
)
func NewBlock(inline bool) *Block {
}
type Block struct {
inline bool
}
func (b *Block) Draw(ctx context.Context, image *ebiten.Image) error {
}
func (b *Block) OnClick(ctx context.Context, click *ClickEvent) {
}