001/** 002 * Copyright 2024 The Space Cookies : Girl Scout Troop #62868 and FRC Team #1868 003 * Open Source Software; you may modify and/or share it under the terms of 004 * the 3-Clause BSD License found in the root directory of this project. 005 */ 006 007package tagalong.subsystems.micro.augments; 008 009import tagalong.subsystems.micro.Elevator; 010 011/** 012 * Subsystem augment required for all subsystems containing 1 or more elevator 013 * microsystems. 014 */ 015public interface ElevatorAugment { 016 /** 017 * 018 * @return The default elevator, usually ID 0 019 */ 020 public Elevator getElevator(); 021 022 /** 023 * 024 * @param id Integer ID of the desired elevator 025 * @return The elevator with the given ID 026 */ 027 public Elevator getElevator(int id); 028}