I am working on a text-based poker game.
I managed to get a working game so far.
Card, Deck, Player etc and Game classes
Basically, inside Game class, I create all objects and simulate the game play.
Now the problem is that all input/output is embeded in the code. This is a problem, as I d like to have a Model independend of view.
Whats the proper way to implement MVC with console based games? or the Game class is considered just a controller, and not part of the Model?
Thanks.