23 lines
361 B
Go
23 lines
361 B
Go
package main
|
|
|
|
import (
|
|
bloob "git.danitheskunk.com/squishy/blooblib"
|
|
run "git.danitheskunk.com/squishy/blooblib/Run"
|
|
)
|
|
|
|
type Game struct {
|
|
}
|
|
|
|
func (g Game) Init(bloob *bloob.Bloob, settings *bloob.Settings) {
|
|
}
|
|
|
|
func (g Game) Render(bloob *bloob.Bloob, screen *bloob.Image) {
|
|
}
|
|
|
|
func (g Game) Update(bloob *bloob.Bloob) {
|
|
}
|
|
|
|
func main() {
|
|
run.Run(&Game{})
|
|
}
|