copying code over from alphane engine

This commit is contained in:
2026-08-14 06:09:53 +00:00
parent 108341158e
commit 263b6da528
13 changed files with 1203 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include <iostream>
#include <stdexcept>
int main(int argc, const char **argv)
{
(void)argc;
(void)argv;
std::cout << __FILE__ << "::" << __LINE__ << '\n';
return EXIT_SUCCESS;
}