overte/tools/vhacd-util/src/main.cpp
2018-02-22 17:06:09 -08:00

31 lines
628 B
C++

//
// main.cpp
// tools/vhacd/src
//
// Created by Virendra Singh on 2/20/15.
// Copyright 2015 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
// #include <stdio.h>
#include <iostream>
#include <iomanip>
#include <VHACD.h>
#include <string>
#include <vector>
#include <SharedUtil.h>
#include "VHACDUtilApp.h"
using namespace std;
using namespace VHACD;
int main(int argc, char * argv[]) {
setupHifiApplication("VHACD Util");
VHACDUtilApp app(argc, argv);
return app.getReturnCode();
}