Files
BloomPatched/src/Targets/TargetDescriptor.hpp

20 lines
297 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include <string>
#include <cstdint>
#include <vector>
#include "TargetVariant.hpp"
namespace Bloom::Targets
{
struct TargetDescriptor
{
std::string name;
std::string id;
std::uint32_t ramSize;
std::vector<TargetVariant> variants;
};
}