UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

15 lines (14 loc) 481 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SaveDataKey = void 0; /** * These are the types of keys that you can put on the local variables that you feed to the save * data manager. */ var SaveDataKey; (function (SaveDataKey) { SaveDataKey["PERSISTENT"] = "persistent"; SaveDataKey["RUN"] = "run"; SaveDataKey["LEVEL"] = "level"; SaveDataKey["ROOM"] = "room"; })(SaveDataKey || (exports.SaveDataKey = SaveDataKey = {}));