12 lines
160 B
Go
12 lines
160 B
Go
package gg
|
|
|
|
import (
|
|
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
|
|
)
|
|
|
|
func (e *Engine)DebugPrint(
|
|
i *Image,
|
|
str string,
|
|
) {
|
|
ebitenutil.DebugPrint(i, str)
|
|
}
|