Files
Aerofoil/PortabilityLayer/IPlotter.h

15 lines
200 B
C
Raw Normal View History

2019-12-26 12:58:58 -05:00
#pragma once
#include "PlotDirection.h"
namespace PortabilityLayer
{
struct Vec2i;
struct IPlotter
{
virtual PlotDirection PlotNext() = 0;
virtual const Vec2i &GetPoint() const = 0;
};
}