YAPOG  0.0.1
Yet Another Pokemon Online Game
PokemonTeam.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_SERVER_POKEMONTEAM_HPP
2 # define YAPOG_SERVER_POKEMONTEAM_HPP
3 
4 # include "YAPOG/Macros.hpp"
7 
8 #include "Pokemon/Pokemon.hpp"
9 
10 namespace yse
11 {
13  {
15 
16  public:
17  PokemonTeam ();
18  virtual ~PokemonTeam ();
19 
20  Pokemon& GetPokemon (int index) const;
21  int GetPokemonCount () const;
22  bool AddPokemon (Pokemon* pokemon);
23 
24  private:
27  };
28 } // namespace yse
29 
30 #endif // YAPOG_SERVER_POKEMONTEAM_HPP
31