Some c++ testing
This commit is contained in:
15
src/DesktopLauncher.cpp
Normal file
15
src/DesktopLauncher.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <iostream>
|
||||
|
||||
#include <SDL2/SDL.h>
|
||||
#include "DarkRP2D.h"
|
||||
|
||||
const int WIDTH = 800, HEIGHT = 600;
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
SDL_Init( SDL_INIT_EVERYTHING );
|
||||
|
||||
DarkRP2D* darkRP2D = new DarkRP2D();
|
||||
|
||||
SDL_Quit( );
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
Reference in New Issue
Block a user