Initial commit
This commit is contained in:
19
src/Targets/TargetDescriptor.hpp
Normal file
19
src/Targets/TargetDescriptor.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user