mirror of
https://github.com/overte-org/overte.git
synced 2025-08-12 10:34:16 +02:00
25 lines
503 B
C
25 lines
503 B
C
//
|
|
// HazeMode.h
|
|
// libraries/entities/src
|
|
//
|
|
// Created by Nissim Hadar on 9/21/17.
|
|
// Copyright 2013 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_HazeMode_h
|
|
#define hifi_HazeMode_h
|
|
|
|
enum HazeMode {
|
|
HAZE_MODE_INHERIT,
|
|
HAZE_MODE_DISABLED,
|
|
HAZE_MODE_RANGE_ONLY,
|
|
HAZE_MODE_RANGE_ALTITUDE,
|
|
|
|
HAZE_MODE_ITEM_COUNT
|
|
};
|
|
|
|
#endif // hifi_HazeMode_h
|
|
|