add view project
This commit is contained in:
18
view/src/main.cpp
Normal file
18
view/src/main.cpp
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user