Merge pull request #18 from huffman/feat/entity-server-script-property

Add EntityScriptUtils
This commit is contained in:
Clément Brisset 2017-01-19 15:48:22 -08:00 committed by GitHub
commit bb5c6e4373

View file

@ -0,0 +1,21 @@
//
// 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