netradiant-custom/libs/quickhull/Tests/main.cpp
2023-05-16 13:54:27 +06:00

10 lines
124 B
C++

namespace quickhull {
namespace tests {
int run();
}
}
int main(int, char** argv) {
return quickhull::tests::run();
}