Files
enduro2d/samples/sources/sample_00/sample_00.cpp
2018-09-19 19:36:45 +07:00

16 lines
496 B
C++

/*******************************************************************************
* This file is part of the "Enduro2D"
* For conditions of distribution and use, see copyright notice in LICENSE.md
* Copyright (C) 2018 Matvey Cherevko
******************************************************************************/
#include "../common.hpp"
using namespace e2d;
int main() {
window w{{640, 480}, "Enduro2D", false};
while ( !w.should_close() ) {
window::poll_events();
}
}