-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRobotWorldSchema.js
28 lines (28 loc) · 1.33 KB
/
RobotWorldSchema.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"use strict";
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
// __PUBLISH_EXTRACT_START__ Schema.schemaNames
exports.__esModule = true;
exports.Category = exports.CodeSpec = exports.Class = void 0;
/** Constants associated with RobotWorld schema. */
/** The "class full names" (SchemaName:ClassName) for the classes associated with RobotWorld. */
var Class;
(function (Class) {
Class["Robot"] = "RobotWorld:Robot";
Class["Barrier"] = "RobotWorld:Barrier";
})(Class = exports.Class || (exports.Class = {}));
/** The CodeSpec names associated with RobotWorld. */
var CodeSpec;
(function (CodeSpec) {
CodeSpec["Robot"] = "RobotWorld:Robot";
CodeSpec["Barrier"] = "RobotWorld:Barrier";
})(CodeSpec = exports.CodeSpec || (exports.CodeSpec = {}));
/** The SpatialCategory names associated with RobotWorld. */
var Category;
(function (Category) {
Category["Robot"] = "RobotWorld:Robot";
Category["Barrier"] = "RobotWorld:Barrier";
})(Category = exports.Category || (exports.Category = {}));
// __PUBLISH_EXTRACT_END__