renderpip/include/components/common.hpp
saarsena@gmail.com 5c7d1905a9 first commit
2026-04-02 03:41:50 -04:00

24 lines
345 B
C++

/**
* @file common.hpp
* @brief Common/utility components
*/
#pragma once
#include <string>
struct Name {
std::string value;
};
// Tag component - empty struct marks entities for destruction
struct ToDestroy {};
struct Lifetime {
float remaining = 0.0f;
};
struct Health {
float current = 100.0f;
float max = 100.0f;
};