export enum ControllerIndex {
  /**
   * Used for Repentogon, an exe-hack which expands the modding API.
   *
   * @see https://repentogon.com/
   */
  NONE = -1,

  KEYBOARD = 0,
  CONTROLLER_1 = 1,
  CONTROLLER_2 = 2,
  CONTROLLER_3 = 3,
}
