mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
10 lines
212 B
C
10 lines
212 B
C
#pragma once
|
|
#include "MiniEngine.h"
|
|
|
|
typedef SDL_Event Event;
|
|
|
|
int PollEvent(Event& refEvent);
|
|
int WaitEvent(Event& refEvent);
|
|
int WaitEventTimeout(Event& refEvent,int ms);
|
|
int PushEvent(const Event& refEvent);
|