Skip to content

Commit

Permalink
- commented on Robot.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghozti committed Aug 10, 2022
1 parent ad410f1 commit 21db9d8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/src/Robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,31 @@ public Robot(){

}

//called once per program init
@Override
public void robotInit() {

}

//called periodically at all times
@Override
public void robotPeriodic() {

}

//called periodically during autonomous
@Override
public void autonomousPeriodic() {

}

//called periodically during tele-op
@Override
public void teleopPeriodic() {

}

//called once when set to kill
@Override
public void robotShutDown() {

Expand Down

0 comments on commit 21db9d8

Please sign in to comment.