suivi moteur et presentation html

This commit is contained in:
Jacques Zhong 2017-05-01 20:45:20 +02:00
parent 81ea78a32d
commit 166879222f
62 changed files with 3196 additions and 0 deletions

11
Test-SFML/test2.c~ Normal file
View file

@ -0,0 +1,11 @@
#include <SFML/Graphics.h>
int main(){
sfVideoMode mode = {800, 600, 32};
sfRenderWindow* window;
/* Create the main window */
window = sfRenderWindow_create(mode, "SFML window", sfResize | sfClose, NULL);
}