YAPOG  0.0.1
Yet Another Pokemon Online Game
BattleParameters.cpp
Go to the documentation of this file.
1 #include "Battle/BattleParameters.hpp"
3 
4 namespace ycl
5 {
7  : yap::BattleParameters ()
8  , opponent_ (nullptr)
9  {
10  }
11 
13  {
14  }
15 
16  // Getters
18  { return *opponent_; };
19 
20  // Setters
22  {
23  // We set the opponent of the base class
25 
26  opponent_ = value;
27  }
28 
29 } // namespace yap