CreatureLib/src/Battling/Models/CreatureIndex.hpp

22 lines
506 B
C++
Raw Normal View History

2019-12-05 08:53:48 +00:00
#ifndef CREATURELIB_CREATUREINDEX_HPP
#define CREATURELIB_CREATUREINDEX_HPP
2019-11-02 12:57:43 +00:00
#include <cstdint>
#include "Creature.hpp"
namespace CreatureLib::Battling {
2019-12-05 08:53:48 +00:00
class CreatureIndex {
2019-11-02 12:57:43 +00:00
uint8_t _side;
uint8_t _creature;
2019-11-02 12:57:43 +00:00
public:
2019-12-05 08:53:48 +00:00
CreatureIndex(uint8_t side, uint8_t creature) : _side(side), _creature(creature) {}
2019-11-02 12:57:43 +00:00
uint8_t GetSideIndex() const { return _side; }
2019-11-02 12:57:43 +00:00
uint8_t GetCreatureIndex() const { return _creature; }
2019-11-02 12:57:43 +00:00
};
}
2019-12-05 08:53:48 +00:00
#endif // CREATURELIB_CREATUREINDEX_HPP