Files
BloomPatched/src/Targets/TargetDescription/Interface.hpp

14 lines
202 B
C++
Raw Normal View History

2021-06-26 03:47:23 +01:00
#pragma once
#include <string>
#include <optional>
namespace Bloom::Targets::TargetDescription
{
struct Interface
{
std::string name;
std::optional<std::string> type;
};
}