aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.cpp
blob: b3b8a8e6d42836e7aeb5e70b4d53c334d6f40213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*********************************/
/*   THRESHOLD        (  //      */
/*   window            ( )/      */
/*   by salade         )(/       */
/*  ________________  ( /)       */
/* ()__)____________)))))   :^}  */
/*********************************/

#include "window.hpp"

int
initWindow(void) {
    // Initialization
    InitWindow(SCREENWIDTH, SCREENHEIGHT, "WIP -- coolspace");
    SetTargetFPS(60);

    return (0);
}