aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: a02b023cc0b14449e75f1640061e0a39bc9e3468 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <raylib.h>
#include "sldj.h"

int main()
{
    Sldj sldj;
    initSldj(&sldj);
    
    while (!WindowShouldClose())
    {
        updateSldj(&sldj);
    }

    closeSldj(&sldj);
    return 0;
}