Files
Aerofoil/GpCommon/GpInputDriverProperties.h
2021-04-28 01:46:07 -04:00

16 lines
239 B
C

#pragma once
#include "EGpInputDriverType.h"
struct IGpAudioDriver;
struct IGpVOSEventQueue;
struct IGpAllocator;
struct GpInputDriverProperties
{
EGpInputDriverType m_type;
IGpVOSEventQueue *m_eventQueue;
IGpAllocator *m_alloc;
};