2023-12-24 18:46:21 +01:00
|
|
|
#include "screen.h"
|
2023-12-24 17:56:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2023-12-24 18:20:11 +01:00
|
|
|
|
2023-12-24 18:53:13 +01:00
|
|
|
ScreenInit(800,400);
|
2023-12-24 18:20:11 +01:00
|
|
|
|
2023-12-24 19:59:31 +01:00
|
|
|
ScreenSetPixel(0,1,1);
|
|
|
|
|
2023-12-24 18:46:21 +01:00
|
|
|
while (!WindowShouldClose()){
|
|
|
|
ScreenUpdate();
|
|
|
|
}
|
|
|
|
|
2023-12-24 22:06:22 +01:00
|
|
|
ScreenClose();
|
2023-12-24 17:56:58 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|