Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/main/java/frc/robot/util/field/ReefScoringLocation.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package frc.robot.util.field;

/**
* <h2> ReefScoringLocation </h2>
* An enum value used to represent the different scoring locations along the reef. These values correspond and follow
* FIRST`s own diagrams and standards.
* <hr>
* @see <a href=https://firstfrc.blob.core.windows.net/frc2025/Manual/Sections/2025GameManual-05ARENA.pdf> FRC Reef Layout </a> (PDF Page 6)
*/
public enum ReefScoringLocation {
A,
B,
C,
D,
E,
F,
G,
H,
I,
J,
K,
L;
}
Loading