14 lines
282 B
C
14 lines
282 B
C
#include "raylib.h"
|
|
|
|
int main () {
|
|
InitWindow(1200, 800, "Interféromètre de Michelson");
|
|
SetTextLineSpacing(144);
|
|
while (!WindowShouldClose()) {
|
|
BeginDrawing();
|
|
ClearBackground(BLACK);
|
|
EndDrawing();
|
|
}
|
|
CloseWindow();
|
|
return 0;
|
|
}
|