NcEngine
Tag.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "Component.h"
8
9#include <string>
10#include <string_view>
11
12namespace nc
13{
22struct Tag
23{
24 std::string value;
25};
26} // namespace nc
Component with a string tag.
Definition: Tag.h:23