mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-08 13:38:30 +02:00
21 lines
No EOL
486 B
C
21 lines
No EOL
486 B
C
//
|
|
// EntityScriptUtils.h
|
|
// libraries/networking/src
|
|
//
|
|
// Created by Ryan Huffman on 2017/01/13
|
|
// Copyright 2017 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_EntityScriptUtils_h
|
|
#define hifi_EntityScriptUtils_h
|
|
|
|
enum EntityScriptStatus {
|
|
ERROR_LOADING_SCRIPT,
|
|
ERROR_RUNNING_SCRIPT,
|
|
RUNNING
|
|
};
|
|
|
|
#endif // hifi_EntityScriptUtils_h
|