Skip to content

radah19/raylib-projects

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Just my Raylib projects 😸 most code is taken from tutorials

Notes to Self for Setup

Use this for creating REAL Raylib projects: https://github.com/raysan5/raylib-project-creator Otherwise create an individual C file with this starter code:

#include "raylib.h"
#include <stdlib.h>

int main(void) {
    const int screenWidth = 640;
    const int screenHeight = 640;

    InitWindow(screenWidth, screenHeight, "Title");
    SetTargetFPS(60);

    while (!WindowShouldClose()) {
        //Drawing
        BeginDrawing();
        ClearBackground(BLACK);

        EndDrawing();
    }

    CloseWindow();
    return 0;
}

Visual Studio 2022 Development

These links have quick start templates/guides for developing on VS 2022:

These videos made Raylib library linking into VS 2022 easy to do:

About

A repository for all my raylib projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages