Files
Cubed/include/Cubed/gameplay/ecs/health.hpp

10 lines
115 B
C++

#pragma once
namespace Cubed {
struct Health {
float hp = 20;
float max_hp = 20;
};
} // namespace Cubed