raycasting/main.cpp

14 lines
134 B
C++
Raw Normal View History

2023-03-31 06:36:54 +08:00
#include <stdio.h>
2023-03-31 06:49:36 +08:00
#include "view.h"
2023-03-31 06:36:54 +08:00
int main()
{
printf("Hello meme!\n");
2023-03-31 06:49:36 +08:00
view_init();
while (view_update());
2023-03-31 06:36:54 +08:00
return 0;
}