Files
Aerofoil/GpCommon/IGpVOSEventQueue.h

12 lines
179 B
C
Raw Permalink Normal View History

2019-12-24 02:35:24 -05:00
#pragma once
struct GpVOSEvent;
struct IGpVOSEventQueue
{
virtual const GpVOSEvent *GetNext() = 0;
virtual void DischargeOne() = 0;
virtual GpVOSEvent *QueueEvent() = 0;
};