This commit is contained in:
18
src/Battling/Models/Battle.hpp
Normal file
18
src/Battling/Models/Battle.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef CREATURELIB_BATTLE_HPP
|
||||
#define CREATURELIB_BATTLE_HPP
|
||||
|
||||
#include <vector>
|
||||
#include "BattleSide.hpp"
|
||||
#include "../Library/BattleLibrary.hpp"
|
||||
|
||||
namespace CreatureLib::Battling {
|
||||
class Battle {
|
||||
const BattleLibrary* _library;
|
||||
std::vector<BattleSide*> _sides;
|
||||
public:
|
||||
const BattleLibrary* GetLibrary() const;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif //CREATURELIB_BATTLE_HPP
|
||||
Reference in New Issue
Block a user