mirror of
https://github.com/overte-org/overte.git
synced 2025-05-08 03:48:56 +02:00
24 lines
515 B
C
24 lines
515 B
C
//
|
|
// ComponentMode.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_ComponentMode_h
|
|
#define hifi_ComponentMode_h
|
|
|
|
enum ComponentMode {
|
|
COMPONENT_MODE_INHERIT,
|
|
COMPONENT_MODE_DISABLED,
|
|
COMPONENT_MODE_ENABLED,
|
|
|
|
COMPONENT_MODE_ITEM_COUNT
|
|
};
|
|
|
|
#endif // hifi_ComponentMode_h
|
|
|