diff --git a/src/main/java/frc/robot/Constants.java b/src/main/java/frc/robot/Constants.java index 261c744..32c926f 100644 --- a/src/main/java/frc/robot/Constants.java +++ b/src/main/java/frc/robot/Constants.java @@ -154,4 +154,9 @@ public class RobotVersion2024 implements RobotVersionConstants { } public static final RobotVersion defaultRobotVersion = RobotVersion.v2024; + + /** DETAILED EXPLANATION */ + public static int Explanation() { + return 1; + } } diff --git a/src/main/java/frc/robot/Other/Explanations.java b/src/main/java/frc/robot/Other/Explanations.java new file mode 100644 index 0000000..963c3eb --- /dev/null +++ b/src/main/java/frc/robot/Other/Explanations.java @@ -0,0 +1,92 @@ +package frc.robot.Other; + +import frc.robot.subsystems.*; +import frc.robot.Constants; +import frc.robot.Robot; +import frc.robot.RobotContainer; +import frc.robot.commands.*; + +/** + * Here, Explanations of How everything works are held. + * + *

When Within The class: + * + *

{@code - Hover over the Green Part to Get a basic explanation} + * + *

{@code - Hover over the Yellow Part for a More Detailed explanation} + * + *

{@code - Hover over The Blue Part to find what your getting an Explanation of} + * + *

EX: int {@link #DriveTrainExplanation} (Blue) = {@link DriveTrain} (Green) {@link + * DriveTrain#Explanation} (Yellow) + * + *

Sub Explanations are down Below: + * + *