YAPOG  0.0.1
Yet Another Pokemon Online Game
BattleCore.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_BATTLECORE_HPP
2 # define YAPOG_BATTLECORE_HPP
3 
4 # include "YAPOG/Macros.hpp"
8 
9 namespace yap
10 {
12  {
13  public:
14  BattleCore ();
15 
16  int ComputeDamage (
17  const PokemonMove& move,
18  const PokemonFighter& attacker,
19  const PokemonFighter& defender);
20  };
21 } // namespace yap
22 
23 #endif // YAPOG_BATTLECORE_HPP