Cafu Engine
GameInfo.hpp
1 /*
2 Cafu Engine, http://www.cafu.de/
3 Copyright (c) Carsten Fuchs and other contributors.
4 This project is licensed under the terms of the MIT license.
5 */
6 
7 #ifndef CAFU_GAMEINFO_HPP_INCLUDED
8 #define CAFU_GAMEINFO_HPP_INCLUDED
9 
10 #include <string>
11 
12 
13 /// This class encapsulates information about a game.
14 class GameInfoT
15 {
16  public:
17 
18  GameInfoT(const std::string& GameName="");
19 
20  const std::string& GetName() const;
21 
22 
23  private:
24 
25  std::string m_GameName;
26 };
27 
28 #endif
This class encapsulates information about a game.
Definition: GameInfo.hpp:14