Zepha/src/Main.cpp

23 lines
560 B
C++
Raw Permalink Normal View History

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wconversion"
#pragma ide diagnostic ignored "OCUnusedMacroInspection"
#define STB_IMAGE_IMPLEMENTATION
#define STB_IMAGE_WRITE_IMPLEMENTATION
2021-08-29 16:14:23 -07:00
#include <stb_image.h>
#include <stb_image_write.h>
#pragma clang diagnostic pop
2021-09-23 11:10:22 -07:00
#include "StartGame.h"
2021-08-19 13:33:08 -07:00
/*
* Zepha, designed, developed, and created by Auri Collings
2021-08-19 13:33:08 -07:00
* This is my child, and I hope you like it.
* Copyright 2018 - present Auri Collings, All Rights Reserved.
*/
int main(int argc, char* argv[]) {
2021-09-23 11:10:22 -07:00
return StartGame(argc, argv);
}