Akavall / GoGamesProject

Trying to make some simple games using golang.
1 stars 1 forks source link

Move all of terminal based Zombie Dice logic to seperate file #28

Closed a-temlyakov closed 7 years ago

a-temlyakov commented 9 years ago

zombie_dice.go should only have logic that is directly related to the game state (e.g. start game, take turn, end turn, end round, end game, etc.)

Playing game from the terminal should invoke those methods, but the logic should be somewhere else. I think we can just put it into play_zombie_dice.go

Akavall commented 7 years ago

I think we have that already.