mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
274 B
C++
14 lines
274 B
C++
#include <Windows.h>
|
|
|
|
#include "logging.hpp"
|
|
INITIALIZE_EASYLOGGINGPP
|
|
|
|
#include "directx/d3d_display.hpp"
|
|
|
|
int main(int argc, char **argv) {
|
|
ace::debug::d3d_display _display;
|
|
_display.create(1024, 768, false);
|
|
_display.init();
|
|
_display.run();
|
|
}
|