CreatureLib/src/Battling/Models/BattleSide.hpp

15 lines
260 B
C++
Raw Normal View History

2019-10-17 12:33:25 +00:00
#ifndef CREATURELIB_BATTLESIDE_HPP
#define CREATURELIB_BATTLESIDE_HPP
#include <vector>
#include "Creature.hpp"
2019-10-17 12:33:25 +00:00
namespace CreatureLib::Battling{
class BattleSide {
std::vector<Creature*> _creatures;
2019-10-17 12:33:25 +00:00
};
}
#endif //CREATURELIB_BATTLESIDE_HPP