23 lines
401 B
C++
23 lines
401 B
C++
#ifndef BILLYSHEET_HABILETE_HPP
|
|
#define BILLYSHEET_HABILETE_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
namespace character::characteristic {
|
|
class Habilete final {
|
|
private:
|
|
const std::uint32_t base{ 2 };
|
|
std::uint32_t carac{ 0 };
|
|
std::uint32_t materiel{ 0 };
|
|
std::uint32_t additional{ 0 };
|
|
|
|
public:
|
|
Habilete() noexcept = default;
|
|
|
|
~Habilete() noexcept = default;
|
|
};
|
|
}
|
|
|
|
|
|
#endif //BILLYSHEET_HABILETE_HPP
|