Initial stats, etc.
This commit is contained in:
17
main/main.go
Normal file
17
main/main.go
Normal 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)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user