mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-24 19:53:42 +02:00
28 lines
520 B
C++
28 lines
520 B
C++
//
|
|
// VHACDUtil.h
|
|
// tools/vhacd/src
|
|
//
|
|
// Created by Seth Alves on 3/5/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
|
|
//
|
|
|
|
|
|
#ifndef hifi_VHACDUtilApp_h
|
|
#define hifi_VHACDUtilApp_h
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
class VHACDUtilApp : public QCoreApplication {
|
|
Q_OBJECT
|
|
public:
|
|
VHACDUtilApp(int argc, char* argv[]);
|
|
~VHACDUtilApp();
|
|
};
|
|
|
|
|
|
|
|
#endif //hifi_VHACDUtilApp_h
|