File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
Templates/CSharp/Project-Templates Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 51
51
<ItemGroup >
52
52
<Compile Include =" Program.cs" />
53
53
<Compile Include =" $safeprojectname$.cs" />
54
-
54
+ <Compile Include =" RobotMap.cs" />
55
+ <Compile Include =" Subsystems\ExampleAutonomousSubsystem.cs" />
56
+ <Compile Include =" Subsystems\ExampleSubsystem.cs" />
57
+ <Compile Include =" Commands\ExampleCommand.cs" />
55
58
<Compile Include =" Properties\AssemblyInfo.cs" />
56
59
</ItemGroup >
57
60
<Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Original file line number Diff line number Diff line change 54
54
<ItemGroup >
55
55
<Compile Include =" Program.cs" />
56
56
<Compile Include =" $safeprojectname$.cs" />
57
-
58
57
<Compile Include =" OI.cs" />
59
-
60
58
<Compile Include =" RobotMap.cs" />
61
-
62
59
<Compile Include =" Subsystems\ExampleSubsystem.cs" />
63
60
<Compile Include =" Commands\ExampleCommand.cs" />
64
-
65
61
<Compile Include =" Properties\AssemblyInfo.cs" />
66
62
</ItemGroup >
67
63
<ItemGroup >
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public class $safeprojectname$ : SampleRobot
26
26
public $safeprojectname $( )
27
27
{
28
28
myRobot = new RobotDrive ( 0 , 1 ) ;
29
- myRobot . SetExpiration ( 0.1 ) ;
29
+ myRobot . Expiration = 0.1 ;
30
30
stick = new Joystick ( 0 ) ;
31
31
}
32
32
/**
@@ -54,7 +54,7 @@ public override void OperatorControl() {
54
54
/**
55
55
* Runs during test mode
56
56
*/
57
- public void test ( )
57
+ public override void Test ( )
58
58
{
59
59
}
60
60
}
You can’t perform that action at this time.
0 commit comments