LeviLamina
Loading...
Searching...
No Matches
Reference.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace SharedTypes {
6
7template <int type> // SharedTypes::AssetType
8struct Reference {
9 std::string mValue;
10
11 bool operator==(Reference const& other) const { return mValue == other.mValue; }
12 explicit operator std::string const&() const { return mValue; }
13};
14
15} // namespace SharedTypes
Definition Reference.h:8