20 lines
297 B
C++
20 lines
297 B
C++
|
|
#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;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|