gg/debug.go

13 lines
160 B
Go
Raw Permalink Normal View History

2023-10-23 15:45:18 +03:00
package gg
import (
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
)
func (e *Engine)DebugPrint(
i *Image,
str string,
) {
ebitenutil.DebugPrint(i, str)
}