Skip to content

Commit

Permalink
Added subsystems constant
Browse files Browse the repository at this point in the history
Added a boolean constant for the drivebase
  • Loading branch information
iamawesomecat committed Jan 5, 2024
1 parent d437bd2 commit 8e9f80e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/frc/team2412/robot/Subsystems.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
package frc.team2412.robot;

public class Subsystems {
public static class SubsystemConstants {}
public static class SubsystemConstants {
public static final boolean DRIVEBASE_ENABLED = false;
}


public Subsystems() {
// initialize subsystems here (wow thats wild)
Expand Down

0 comments on commit 8e9f80e

Please sign in to comment.