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

21 lines
324 B
C++
Raw Normal View History

#pragma once
#include <string>
namespace Targets::TargetDescription
{
struct Pin
{
std::string position;
std::string pad;
Pin(
const std::string& position,
const std::string& pad
)
: position(position)
, pad(pad)
{}
};
}