isaac-typescript-definitions
Version:
TypeScript definitions for The Binding of Isaac: Repentance.
17 lines (16 loc) • 727 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ControllerIndex = void 0;
var ControllerIndex;
(function (ControllerIndex) {
/**
* Used for Repentogon, an exe-hack which expands the modding API.
*
* @see https://repentogon.com/index.html
*/
ControllerIndex[ControllerIndex["NONE"] = -1] = "NONE";
ControllerIndex[ControllerIndex["KEYBOARD"] = 0] = "KEYBOARD";
ControllerIndex[ControllerIndex["CONTROLLER_1"] = 1] = "CONTROLLER_1";
ControllerIndex[ControllerIndex["CONTROLLER_2"] = 2] = "CONTROLLER_2";
ControllerIndex[ControllerIndex["CONTROLLER_3"] = 3] = "CONTROLLER_3";
})(ControllerIndex || (exports.ControllerIndex = ControllerIndex = {}));
;