Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
TagComponent.hpp
1#pragma once
2
3#include <string>
4#include "EngineCore/Reflection/ComponentReflection.hpp"
5
6namespace Grindstone {
7 struct TagComponent {
8 std::string tag;
9
10 REFLECT("Tag")
11 };
12}
Definition TagComponent.hpp:7