Ver Fonte

Start of AI stuff.

Sacha Ligthert há 6 meses atrás
pai
commit
7cbde11f44
2 ficheiros alterados com 14 adições e 0 exclusões
  1. 7 0
      ai_random/init.go
  2. 7 0
      game/ai.go

+ 7 - 0
ai_random/init.go

@@ -0,0 +1,7 @@
+package ai_random
+
+import "fmt"
+
+func init() {
+	fmt.Println("AI Random Initialized")
+}

+ 7 - 0
game/ai.go

@@ -0,0 +1,7 @@
+package game
+
+import "fmt"
+
+func (game *Game) initAI() {
+	fmt.Println("AI Initialized")
+}