Adding objects is done except for the dagger

This commit is contained in:
Pcornat 2024-02-26 14:27:40 +01:00
parent 88025baeff
commit 16422be351
Signed by: Pcornat
GPG key ID: E0326CC678A00BDD
3 changed files with 276 additions and 0 deletions

View file

@ -8,6 +8,9 @@ namespace character::characteristic {
public:
Chance() noexcept: Characteristic(3, 0, 0, 0) {}
Chance(const std::uint32_t carac, const std::uint32_t materiel, const std::uint32_t additional) :
Characteristic(3, carac, materiel, additional) {}
~Chance() noexcept final = default;
friend void from_json(const json &j, Chance &chance) {