diff --git a/credits.h b/credits.h new file mode 100644 index 0000000..7a74c3f --- /dev/null +++ b/credits.h @@ -0,0 +1,11 @@ +#ifndef CREDITS_H +#define CREDITS_H + +#define AUTHOR "Milang" +#define NAME "1v1 3D" +#define VERSION "Alpha Build 1.00" + +#define LIB_AUTHORS "Lephenixnoir\nPierrotll" +#define LIB "LibText\nMonochromeLib" + +#endif \ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..3bdeed2 --- /dev/null +++ b/main.cpp @@ -0,0 +1,24 @@ +#include "main.h" +#include "eng3d\object\coordtable\coordtable.h" +#include "eng3d\mathmodule\angle.h" +extern "C" +{ +#include "stdio.h" +#include "stdlib.h" +#include "fxlib.h" +} +int main() +{ + CoordTable coord(50); + unsigned int key; + char txt[10]; + sprintf(txt,"%d",sizeof(int)); + locate(1,1); + Print((unsigned char*)txt); + Bdisp_PutDisp_DD(); + while (true) + { + GetKey(&key); + } + return 0; +} \ No newline at end of file diff --git a/main.h b/main.h new file mode 100644 index 0000000..546999c --- /dev/null +++ b/main.h @@ -0,0 +1,6 @@ +#ifndef MAIN_H +#define MAIN_H + +int main(); + +#endif \ No newline at end of file