/****************************************************************************** * File - components.h * Author - Joey Pollack * Date - 2022/05/24 (y/m/d) * Mod Date - 2022/05/24 (y/m/d) * Description - ECS component declarations ******************************************************************************/ #ifndef LUNARIUM_COMPONENTS_H_ #define LUNARIUM_COMPONENTS_H_ #include #include namespace lunarium { struct LabelComponent { std::string Label }; } #endif // LUNARIUM_COMPONENTS_H_