Files
games/common/elements/v1/block.go
2025-08-18 14:57:01 -04:00

24 lines
298 B
Go

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) {
}