add view project

This commit is contained in:
2025-01-30 23:03:51 +01:00
parent 3d42b59b60
commit 4c38bfe9a6
6 changed files with 40 additions and 3 deletions

18
view/src/main.cpp Normal file
View File

@@ -0,0 +1,18 @@
#include <raylib.h>
int main(int argc, char const *argv[])
{
char name[] = "view";
int screenWidth = 800;
int screenHeight = 800;
InitWindow(screenWidth, screenHeight, name);
SetTargetFPS(60);
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(BLUE);
EndDrawing();
}
CloseWindow();
return 0;
}