Files
ia2005/InterfaceCpp/main.cpp
2024-11-12 17:41:10 +01:00

18 lines
195 B
C++

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