mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
Add FreeType, progress to title screen
This commit is contained in:
17
PortabilityLayer/PLEventQueue.h
Normal file
17
PortabilityLayer/PLEventQueue.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include "PLCore.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
class EventQueue
|
||||
{
|
||||
public:
|
||||
virtual bool Dequeue(EventRecord *evt) = 0;
|
||||
virtual EventRecord *Enqueue() = 0;
|
||||
|
||||
static EventQueue *GetInstance();
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user