#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <raylib.h>


int main()
{
	
	int screen_width = 800;
	int screen_height = 450;
	
	
	InitWindow(screen_width, screen_height, "Raylib skeleton");
	SetTargetFPS(60);
	
	while (!WindowShouldClose())
	{
		// input handling

		// update

		// draw
		BeginDrawing();
		ClearBackground(RAYWHITE);

				
		EndDrawing();	
	}

	CloseWindow();
	
	return 0;
}
