Initial commit.

This commit is contained in:
2025-11-27 22:50:36 -05:00
commit 70cee9e3f0
11 changed files with 710 additions and 0 deletions

29
main.go Normal file
View File

@@ -0,0 +1,29 @@
package main
import (
"fluids/game"
"fmt"
"log"
"github.com/hajimehoshi/ebiten/v2"
)
const (
ScreenWidth = 640
ScreenHeight = 360
)
func main() {
fmt.Println("fluid experiments")
g := game.NewGame()
ebiten.SetWindowTitle("fluids")
ebiten.SetWindowSize(ScreenWidth*2, ScreenHeight*2)
err := ebiten.RunGame(g)
if err != nil {
log.Fatal(err)
}
}