mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
10 lines
142 B
C
10 lines
142 B
C
#pragma once
|
|
|
|
#include "CoreDefs.h"
|
|
|
|
struct IGpFiber
|
|
{
|
|
virtual void YieldTo(IGpFiber *toFiber) = 0;
|
|
virtual void Destroy() = 0;
|
|
};
|