13 lines
212 B
C++
13 lines
212 B
C++
#include <cstdint>
|
|
#include <vector>
|
|
|
|
#include "pathSegment.hpp"
|
|
|
|
class Path
|
|
{
|
|
private:
|
|
std::vector<PathSegment> segments;
|
|
|
|
public:
|
|
void addSegment(PathSegment segment) { segments.push_back(segment); }
|
|
}; |