2018-07-18 22:01:19 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2020-06-26 11:10:34 -07:00
|
|
|
/* Copyright (c) 2018-2020 FIRST. All Rights Reserved. */
|
2018-07-18 22:01:19 -07:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
2020-06-26 11:10:34 -07:00
|
|
|
package frc.robot;
|
|
|
|
|
|
2018-07-18 22:01:19 -07:00
|
|
|
import edu.wpi.first.wpilibj.RobotBase;
|
|
|
|
|
|
|
|
|
|
public final class Main {
|
|
|
|
|
private Main() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Main initialization function. Do not perform any initialization here.
|
|
|
|
|
*
|
|
|
|
|
* <p>If you change your main robot class, change the parameter type.
|
|
|
|
|
*/
|
|
|
|
|
public static void main(String... args) {
|
|
|
|
|
RobotBase.startRobot(MyRobot::new);
|
|
|
|
|
}
|
|
|
|
|
}
|