Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
PrintReflectionData.hpp
1#pragma once
2
3#include <string>
4#include "Metadata.hpp"
5
6namespace Grindstone::Reflection {
7 std::string ParseDisplayName(std::string v, std::string n);
8 std::string ParseStoredName(std::string v, std::string n);
9 std::string StringifyMetadata(Metadata m);
10}