diff --git a/furvm/include/furvm/thing.hpp b/furvm/include/furvm/thing.hpp index 9a2c1d9..16dfb98 100644 --- a/furvm/include/furvm/thing.hpp +++ b/furvm/include/furvm/thing.hpp @@ -19,10 +19,10 @@ enum class thing_t : std::uint8_t { }; /** - * @brief Returns data size of a thing. + * @brief Returns how many bytes a thing would take up. * * @param type Type of the thing. - * @return The data size of the thing. + * @return The byte count. */ static inline std::size_t thing_type_size(thing_t type) { switch (type) { @@ -35,13 +35,22 @@ template