1
0
forked from josh/j3ml
Files
j3ml-fork/main.cpp

18 lines
327 B
C++

#include <iostream>
#include <J3ML/Geometry.h>
#include <J3ML/J3ML.h>
int main(int argc, char** argv)
{
std::cout << "j3ml demo coming soon" << std::endl;
return 0;
}
#ifdef __WIN32
extern "C" {
int wmain(int argc, wchar_t* argv[])
{
return main(argc, reinterpret_cast<char **>(argv));
}
};
#endif