raycasting/main.cpp

13 lines
120 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()
{
2023-03-31 06:49:36 +08:00
view_init();
while (view_update());
2023-04-01 05:56:26 +08:00
view_end();
2023-03-31 06:36:54 +08:00
return 0;
}