mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-23 05:05:48 +02:00
17 lines
432 B
C++
17 lines
432 B
C++
//
|
|
// main.cpp
|
|
// animation-server/src
|
|
//
|
|
// Created by Brad Hefta-Gaub on 05/16/2013.
|
|
// Copyright 2012 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 "AnimationServer.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
AnimationServer animationServer(argc, argv);
|
|
return animationServer.exec();
|
|
}
|