Thunderbots Project
Loading...
Searching...
No Matches
shape.h
1#pragma once
2
3#include "software/geom/point.h"
4
8class Shape
9{
10 public:
11 virtual ~Shape() = default;
12};
Definition shape.h:9