Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
PluginManifestData.hpp
1#pragma once
2
3#include <string>
4#include <filesystem>
5
6namespace Grindstone::Plugins {
7 struct ManifestData {
8 std::string pluginName;
9 std::string semanticVersioning;
10 std::filesystem::path path;
11 };
12}
Definition PluginManifestData.hpp:7