mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-24 07:06:36 +00:00
Add FreeType, progress to title screen
This commit is contained in:
19
PortabilityLayer/HostVOSEventQueue.h
Normal file
19
PortabilityLayer/HostVOSEventQueue.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
struct GpVOSEvent;
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
class HostVOSEventQueue
|
||||
{
|
||||
public:
|
||||
virtual const GpVOSEvent *GetNext() = 0;
|
||||
virtual void DischargeOne() = 0;
|
||||
|
||||
static void SetInstance(HostVOSEventQueue *instance);
|
||||
static HostVOSEventQueue *GetInstance();
|
||||
|
||||
private:
|
||||
static HostVOSEventQueue *ms_instance;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user