Switched to Corrade's string over STL

This commit is contained in:
2026-03-07 14:44:29 +02:00
parent 55f12fcd69
commit 88d4695596
6 changed files with 85 additions and 79 deletions

View File

@@ -24,7 +24,7 @@ concept isAComponent = std::derived_from<T, ECS::Component>;
namespace Tourmaline::Systems::Components {
// Builtin
struct Base : public ECS::Component {
Base() {}
double x = 0, y = 0, z = 0;
};
} // namespace Tourmaline::Systems::Components
#endif