init commit

This commit is contained in:
2024-11-12 17:41:10 +01:00
parent 1e4f1f955b
commit 20bc9108d3
146 changed files with 24465 additions and 0 deletions

17
InterfaceCpp/main.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include <iostream>
#include <SDL.h>
#include "fenetre.h"
using namespace std;
int main()
{
Fenetre f(800,600,32,"Auto Pilot","Back/bg1.bmp");
f.redraw();
f.handle();
return 1;
}