title |
---|
src/ecs/components/Health.hpp |
Name |
---|
ecs |
ecs::component |
Name | |
---|---|
struct | ecs::component::Health |
/*
** 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