This commit is contained in:
Ben Kyd
2019-07-16 14:33:14 +01:00
parent decfa32d28
commit 1400b59e21
6 changed files with 50 additions and 6 deletions

View File

@@ -1,9 +1,14 @@
#include <iostream>
#include "../src/inferno.hppd"
#include "../src/inferno.hpp"
int main(int argc, char** argv) {
InfernoEngine inferno;
inferno.SetMode(MODE_PROGRESSIVE_GUI);
bool status = inferno.InitWindow();
if (!status {
std::cout << "Error initializing window: " << inferno.LastError() << std::endl;
}
Inferno inferno;
std::cout << "lol" << std::endl;
}