mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 04:29:24 +02:00
17 lines
374 B
C
17 lines
374 B
C
//
|
|
// world.h
|
|
// interface/src
|
|
//
|
|
// Created by Philip Rosedale on 8/23/12.
|
|
// 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
|
|
//
|
|
|
|
#ifndef hifi_world_h
|
|
#define hifi_world_h
|
|
|
|
const float GRAVITY_EARTH = 9.80665f;
|
|
|
|
#endif // hifi_world_h
|