Grindstone Game Engine
v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
GameplayTag.hpp
1
#pragma once
2
3
#include "HashedString.h"
4
5
namespace
Grindstone {
6
class
GameplayTag {
7
public
:
8
GameplayTag();
9
GameplayTag(
const
String&
string
);
10
GameplayTag(StringRef
string
);
11
GameplayTag(
HashedString
string
);
12
13
String ToString()
const
;
14
HashedString
ToHashedString()
const
;
15
private
:
16
HashedString
hashedString;
17
18
};
19
}
Grindstone::HashedString
Definition
HashedString.hpp:9
sources
code
Common
GameplayTag.hpp
Generated by
1.13.2