GameManager.hpp
Go to the documentation of this file.
1 // Copyright (c) 2019 Chris Ohk, Youngjoong Kim, SeungHyun Jeon
2 
3 // We are making my contributions/submissions to this project solely in our
4 // personal capacity and are not conveying any rights to any intellectual
5 // property of any third parties.
6 
7 #ifndef ROSETTASTONE_GAME_MANAGER_HPP
8 #define ROSETTASTONE_GAME_MANAGER_HPP
9 
11 #include <Rosetta/Games/Game.hpp>
12 
13 namespace RosettaStone
14 {
21 {
22  public:
24  static void ProcessNextStep(Game& game, Step step);
25 };
26 } // namespace RosettaStone
27 
28 #endif // ROSETTASTONE_GAME_MANAGER_HPP
Game class.
Definition: Game.hpp:21
static void ProcessNextStep(Game &game, Step step)
Invokes method when a state is changed.
GameManager class.
Definition: GameManager.hpp:20
Definition: AccountInfo.hpp:14