mirror of
https://github.com/joel16/VITAlbum.git
synced 2024-11-23 03:29:54 +00:00
12 lines
187 B
C++
12 lines
187 B
C++
#pragma once
|
|
|
|
#include <SDL.h>
|
|
|
|
namespace GUI {
|
|
SDL_Renderer *GetRenderer(void);
|
|
SDL_Window *GetWindow(void);
|
|
int Init(void);
|
|
void Exit(void);
|
|
int RenderLoop(void);
|
|
}
|