Clean up game thread in SDL version

This commit is contained in:
elasota
2020-10-12 00:37:11 -04:00
parent 522e99afb9
commit 5fbf3f5df0
6 changed files with 14 additions and 1 deletions

View File

@@ -5,5 +5,6 @@
struct IGpFiber
{
virtual void YieldTo(IGpFiber *toFiber) = 0;
virtual void YieldToTerminal(IGpFiber *toFiber) = 0;
virtual void Destroy() = 0;
};