mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
21 lines
546 B
C++
21 lines
546 B
C++
//
|
|
// NetworkingConstants.h
|
|
// libraries/networking/src
|
|
//
|
|
// Created by Stephen Birarda on 2015-03-31.
|
|
// 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_NetworkingConstants_h
|
|
#define hifi_NetworkingConstants_h
|
|
|
|
#include <QtCore/QUrl>
|
|
|
|
namespace NetworkingConstants {
|
|
const QUrl METAVERSE_SERVER_URL = QUrl("https://metaverse.highfidelity.com");
|
|
}
|
|
|
|
#endif // hifi_NetworkingConstants_h
|