stuff happened

This commit is contained in:
Abhishrek05
2022-01-20 18:08:05 -07:00
parent 06091a9bd9
commit a4787e0e30
8 changed files with 306 additions and 1 deletions
@@ -0,0 +1,17 @@
// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
package frc4388.robot.subsystems;
import edu.wpi.first.wpilibj2.command.SubsystemBase;
public class Vision extends SubsystemBase {
/** Creates a new Vision. */
public Vision() {}
@Override
public void periodic() {
// This method will be called once per scheduler run
}
}