YAPOG  0.0.1
Yet Another Pokemon Online Game
PokemonMoveTable.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_POKEMONMOVETABLE_HPP
2 # define YAPOG_POKEMONMOVETABLE_HPP
3 
4 # include "YAPOG/Macros.hpp"
5 # include "YAPOG/Game/ID.hpp"
6 # include "YAPOG/System/String.hpp"
8 
9 namespace yse
10 {
11  class Pokemon;
12 
13  class PokemonMoveTable : public ITable
14  {
16  public:
18 
19  void LoadFromPokemon (
20  const Pokemon& pokemon,
21  const yap::ID& index);
22 
28 
29  static const yap::ID DEFAULT_STATIC_ID;
30  static const yap::UInt16 DEFAULT_PP;
32 
33  };
34 } // namespace yse
35 
36 #endif // YAPOG_POKEMONMOVETABLE_HPP