mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
11 lines
No EOL
197 B
C++
11 lines
No EOL
197 B
C++
#include "emulator.hpp"
|
|
#include "gl3w.h"
|
|
|
|
int main (int argc, char *argv[]) {
|
|
Emulator emu;
|
|
if (gl3wInit()) {
|
|
Helpers::panic("Failed to initialize OpenGL");
|
|
}
|
|
|
|
emu.run();
|
|
} |