Health.hpp
Namespaces
Classes
Name
struct
Source code
/*
** 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