mirror of
https://github.com/genxium/DelayNoMore
synced 2024-12-25 19:28:55 +00:00
10 lines
130 B
Go
10 lines
130 B
Go
package main
|
|
|
|
import "github.com/hajimehoshi/ebiten/v2"
|
|
|
|
type WorldInterface interface {
|
|
Init()
|
|
Update()
|
|
Draw(*ebiten.Image)
|
|
}
|