1
0
forked from josh/j3ml

Adding code x3

This commit is contained in:
2023-12-28 16:04:31 -06:00
parent 24cc2e79bc
commit 7e32c2ec62
10 changed files with 71 additions and 27 deletions

View File

@@ -5,4 +5,13 @@ 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