Files
Aerofoil/GpCommon/IGpVOSEventQueue.h
2019-12-24 02:35:24 -05:00

12 lines
179 B
C

#pragma once
struct GpVOSEvent;
struct IGpVOSEventQueue
{
virtual const GpVOSEvent *GetNext() = 0;
virtual void DischargeOne() = 0;
virtual GpVOSEvent *QueueEvent() = 0;
};