mirror of
https://github.com/genxium/DelayNoMore
synced 2024-12-26 11:48:56 +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)
|
||
|
}
|