Peoplemon  0.1.0
Peoplemon 3 game source documentation
Result.hpp
Go to the documentation of this file.
1 #ifndef CORE_BATTLES_RESULT_HPP
2 #define CORE_BATTLES_RESULT_HPP
3 
4 #include <vector>
5 
6 namespace core
7 {
8 namespace battle
9 {
16 struct Result {
18 
24  : localPlayerWon(false) {}
25 };
26 
27 } // namespace battle
28 } // namespace core
29 
30 #endif
Core classes and functionality for both the editor and game.
Represents the result of a battle.
Definition: Result.hpp:16
Result()
Constructs an empty result.
Definition: Result.hpp:23