#ifndef BILLYSHEET_HABILETE_HPP #define BILLYSHEET_HABILETE_HPP #include #include "characteristic.hpp" namespace character::characteristic { class Habilete final : public Characteristic { public: Habilete() noexcept: Characteristic(2, 0, 0, 0) {}; ~Habilete() noexcept final = default; friend void from_json(const json &j, Habilete &habilete) { nlohmann::from_json(j, static_cast(habilete)); } }; void to_json(json &j, const Habilete &habilete) { to_json(j, static_cast(habilete)); } } #endif //BILLYSHEET_HABILETE_HPP