main window + Makefile

This commit is contained in:
2025-12-25 11:08:24 +01:00
parent 16cd937b5f
commit 9692b50183
2 changed files with 16 additions and 1 deletions

9
main.c
View File

@ -1,6 +1,13 @@
#include "raylib.h"
int main () {
InitWindow(1200, 800, "Interféromètre de Michelson");
SetTextLineSpacing(144);
while (!WindowShouldClose()) {
BeginDrawing();
ClearBackground(BLACK);
EndDrawing();
}
CloseWindow();
return 0;
}