mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-03-25 02:21:23 +01:00
update SDL2 example compilation with Gradle
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
// sdl2-sample.cpp : SDL2 example - initialize and quit
|
||||
//
|
||||
// SDL2 example - initialize and quit
|
||||
|
||||
#include "SDL.h"
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
SDL_Init(SDL_INIT_EVERYTHING);
|
||||
int main(int argc, char** argv){
|
||||
SDL_Init(SDL_INIT_EVERYTHING);
|
||||
SDL_Quit();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user