culturered_client/PlaySound/main.cpp

13 lines
195 B
C++
Raw Normal View History

2024-09-07 03:34:44 +00:00
#include "SDLWindow.h"
#ifdef __cplusplus
extern "C" {
#endif
int SDL_main(int argc, char* argv[]) {
SDLWindow window;
return window.Run();
}
#ifdef __cplusplus
}
#endif