001/************************* PROJECT RON *************************/ 002/* Copyright (c) 2026 StuyPulse Robotics. All rights reserved. */ 003/* Use of this source code is governed by an MIT-style license */ 004/* that can be found in the repository LICENSE file. */ 005/***************************************************************/ 006package com.stuypulse.robot; 007 008import edu.wpi.first.wpilibj.RobotBase; 009 010/** 011 * <h2>Main Class</h2> 012 * 013 * <p>This is the main class that instantiates the robot code. 014 * <p>There is no need to edit this file, and it should not be edited unless you know what you are doing. 015 */ 016public final class Main { 017 018 private Main() { 019 } 020 021 /** 022 * The main method that starts the robot code. This should not be edited unless you know what you are doing. 023 */ 024 public static void main(String... args) { 025 RobotBase.startRobot(Robot::new); 026 } 027}