summaryrefslogtreecommitdiff
path: root/src/main.c
blob: 66b76c8b5d427f02bac97749b8906f8507982207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "screen.h"


int main(int argc, char *argv[])
{

  ScreenInit(800,400);

  ScreenSetPixel(0,1,1);
  
  while (!WindowShouldClose()){
    ScreenUpdate();
  }
  
  ScreenClose();
  
  return 0;
}