/**
 * This is an enum for the third-party Mod Config Menu mod, which provides a menu and is often
 * utilized by other mods.
 *
 * @see https://steamcommunity.com/sharedfiles/filedetails/?id=2681875787
 */
export enum ModConfigMenuOptionType {
  TEXT = 1,
  SPACE = 2,
  SCROLL = 3,
  BOOLEAN = 4,
  NUMBER = 5,
  KEY_BIND_KEYBOARD = 6,
  KEY_BIND_CONTROLLER = 7,
  TITLE = 8,
}
