Initial stats, etc.

This commit is contained in:
2023-04-02 23:24:47 -07:00
parent bdc095e2b2
commit 825ee8d053
8 changed files with 168 additions and 0 deletions

17
main/main.go Normal file
View File

@ -0,0 +1,17 @@
// Binary koboldsim is an economic simulation game of a kobold mine.
package main
import (
"fmt"
"git.chromaticdragon.app/kistaro/CardSimEngine/cardsim"
"git.chromaticdragon.app/kistaro/KoboldSim/koboldsim"
)
func main() {
p := koboldsim.InitPlayer()
err := cardsim.RunSimpleTerminalUI(p)
if err != nil {
fmt.Println("Terminated with error:", err)
}
}