raycasting/main.cpp

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