Files
Aerofoil/GpCommon/IGpFiber.h
2020-09-26 16:45:52 -04:00

10 lines
142 B
C

#pragma once
#include "CoreDefs.h"
struct IGpFiber
{
virtual void YieldTo(IGpFiber *toFiber) = 0;
virtual void Destroy() = 0;
};