camelot-unchained
Version:
Camelot Unchained Client Library
18 lines (17 loc) • 747 B
JavaScript
/**
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
;
var buildUIMode;
(function (buildUIMode) {
buildUIMode[buildUIMode["NOTBUILDING"] = 0] = "NOTBUILDING";
buildUIMode[buildUIMode["PLACINGPHANTOM"] = 1] = "PLACINGPHANTOM";
buildUIMode[buildUIMode["PHANTOMPLACED"] = 2] = "PHANTOMPLACED";
buildUIMode[buildUIMode["SELECTINGBLOCK"] = 4] = "SELECTINGBLOCK";
buildUIMode[buildUIMode["BLOCKSELECTED"] = 8] = "BLOCKSELECTED";
})(buildUIMode || (buildUIMode = {}));
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = buildUIMode;