From ee04ca47d990f828d51d00d81e30850f31e69b23 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 3 Jun 2025 13:31:44 +0100 Subject: Init --- main.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 main.c (limited to 'main.c') diff --git a/main.c b/main.c new file mode 100644 index 0000000..2c18c80 --- /dev/null +++ b/main.c @@ -0,0 +1,30 @@ +/* Copyright (C) 2025 Aryadev Chavali + + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the Unlicense for details. + + * You may distribute and modify this code under the terms of the Unlicense, + * which you should have received a copy of along with this program. If not, + * please go to . + + * Created: 2025-06-03 + * Description: + */ + +#include +#include + +int main(void) +{ + InitWindow(800, 600, "Flock Simulation"); + while (!WindowShouldClose()) + { + BeginDrawing(); + ClearBackground(BLACK); + DrawText("Hello, world!", 360, 260, 20, WHITE); + EndDrawing(); + } + CloseWindow(); + return 0; +} -- cgit v1.2.3-13-gbd6f