Transférer les fichiers vers ''

This commit is contained in:
Milang 2019-07-17 11:15:29 +02:00
parent 66b1784324
commit 084fcee27f
3 changed files with 41 additions and 0 deletions

11
credits.h Normal file
View File

@ -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

24
main.cpp Normal file
View File

@ -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;
}

6
main.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef MAIN_H
#define MAIN_H
int main();
#endif