Files
enduro2d/sources/enduro2d/platforms/windows/platform_windows.cpp
2018-08-05 04:21:43 +07:00

16 lines
457 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 <enduro2d/base/_all.hpp>
#if defined(E2D_PLATFORM) && E2D_PLATFORM == E2D_PLATFORM_WINDOWS
int main() {
return 0;
}
#endif