#include "screen.h" int main(int argc, char *argv[]) { ScreenInit(800,400); ScreenSetPixel(0,1,1); while (!WindowShouldClose()){ ScreenUpdate(); } ScreenClose(); return 0; }