2020-12-26 14:12:05 -08:00
|
|
|
// 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.
|
2018-07-18 22:01:19 -07:00
|
|
|
|
2020-06-26 11:10:34 -07:00
|
|
|
package frc.robot;
|
|
|
|
|
|
2025-11-08 15:08:38 -08:00
|
|
|
import org.wpilib.framework.RobotBase;
|
2018-07-18 22:01:19 -07:00
|
|
|
|
|
|
|
|
public final class Main {
|
2020-12-29 22:45:16 -08:00
|
|
|
private Main() {}
|
2018-07-18 22:01:19 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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) {
|
2024-05-24 10:41:23 -07:00
|
|
|
RobotBase.startRobot(Robot::new);
|
2018-07-18 22:01:19 -07:00
|
|
|
}
|
|
|
|
|
}
|