logic layer

This commit is contained in:
2023-07-01 00:50:12 +02:00
parent d5482dd9e7
commit 884df7c406
7 changed files with 126 additions and 102 deletions

View File

@@ -13,7 +13,7 @@ import (
func LoadImage(path string) *ebiten.Image {
file, err := ioutil.ReadFile(path) //read the content of file
file, err := ioutil.ReadFile(path)
if err != nil {
log.Fatal(err)
}