Skip to content

Commit 44735fc

Browse files
committed
test
1 parent 8c10ec3 commit 44735fc

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

developerRobot/src/main/java/frc/robot/Robot.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ public class Robot extends TimedRobot {
1111
* This function is run when the robot is first started up and should be used for any
1212
* initialization code.
1313
*/
14-
public Robot() {}
14+
public Robot() {
15+
16+
17+
18+
}
1519

1620
/** This function is run once each time the robot enters autonomous mode. */
1721
@Override

developerRobot/src/main/native/cpp/Robot.cpp

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,20 @@
44

55
#include <frc/TimedRobot.h>
66

7+
8+
#include <utility>
9+
710
class Robot : public frc::TimedRobot {
811
public:
912
/**
1013
* This function is run when the robot is first started up and should be
1114
* used for any initialization code.
1215
*/
13-
Robot() {}
16+
Robot() {
17+
18+
19+
20+
}
1421

1522
/**
1623
* This function is run once each time the robot enters autonomous mode

0 commit comments

Comments
 (0)