struct
/* ** EPITECH PROJECT, 2022 ** RTYPE ** File description: ** Health */ #pragma once #include "Constant.hpp" namespace ecs::component { struct Health { int health; int lastHealth = utils::constant::maxPlayerHealth; }; } // namespace ecs::component
Updated on 2022-11-13 at 17:21:37 +0100
Last updated 2 years ago