Files
Aerofoil/GpCommon/GpInputDriverProperties.h

16 lines
239 B
C
Raw Normal View History

2019-12-29 17:39:19 -05:00
#pragma once
#include "EGpInputDriverType.h"
struct IGpAudioDriver;
struct IGpVOSEventQueue;
2021-04-28 01:46:07 -04:00
struct IGpAllocator;
2019-12-29 17:39:19 -05:00
struct GpInputDriverProperties
{
EGpInputDriverType m_type;
IGpVOSEventQueue *m_eventQueue;
2021-04-28 01:46:07 -04:00
IGpAllocator *m_alloc;
2019-12-29 17:39:19 -05:00
};