Horizon
src
board
airwire.hpp
1
#pragma once
2
#include "track.hpp"
3
4
namespace
horizon {
5
class
Airwire {
6
public
:
7
Airwire(
const
Track::Connection &f,
const
Track::Connection &t) : from(f), to(t)
8
{
9
}
10
Track::Connection from;
11
Track::Connection to;
12
void
update_refs(
class
Board &brd);
13
};
14
}
// namespace horizon
Generated by
1.8.20