mirror of
https://github.com/blupi-games/planetblupi
synced 2024-12-30 10:15:36 +01:00
15 lines
226 B
C++
15 lines
226 B
C++
|
|
#pragma once
|
|
|
|
class Platform
|
|
{
|
|
private:
|
|
static std::function<void(const SDL_Event &)> handleEvent;
|
|
|
|
private:
|
|
static void timer (void *);
|
|
|
|
public:
|
|
static void run (std::function<void(const SDL_Event &)> handleEvent);
|
|
};
|