Skip to content

Commit

Permalink
Merge pull request #14 from MontclairRobotics/RobotClassDeployment
Browse files Browse the repository at this point in the history
Create a "standard" robot class that will always be the one that gets deployed…
  • Loading branch information
GarrettBurroughs authored Jan 6, 2018
2 parents cbdce1e + 18690e0 commit bb177a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

def TEAM = 555
def ROBOT_CLASS = "frc.team555.robot.TankRobot"
def ROBOT_CLASS = "frc.team555.robot.Robot"

// Define my targets (RoboRIO) and artifacts (deployable files)
// This is added by GradleRIO's backing project EmbeddedTools.
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/frc/team555/robot/Robot.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package frc.team555.robot;

public class Robot extends TankRobot {
}

0 comments on commit bb177a0

Please sign in to comment.