BillySheet/include/characteristic/adresse.hpp

23 lines
395 B
C++
Raw Normal View History

2022-01-10 21:16:05 +01:00
#ifndef BILLYSHEET_ADRESSE_HPP
#define BILLYSHEET_ADRESSE_HPP
#include <cstdint>
namespace character::characteristic {
2022-01-10 21:34:54 +01:00
class Adresse final {
2022-01-10 21:16:05 +01:00
private:
const std::uint32_t base{ 1 };
std::uint32_t carac{ 0 };
std::uint32_t materiel{ 0 };
std::uint32_t additional{ 0 };
2022-01-10 21:34:54 +01:00
public:
Adresse() noexcept = default;
~Adresse() noexcept = default;
2022-01-10 21:16:05 +01:00
};
}
#endif //BILLYSHEET_ADRESSE_HPP