make and initilize fields
authorMeryem Esa <meresa14@gmail.com>
Wed, 3 Feb 2016 03:55:06 +0000 (19:55 -0800)
committerMeryem Esa <meresa14@gmail.com>
Mon, 15 Feb 2016 01:01:08 +0000 (17:01 -0800)
src/org/usfirst/frc/team3501/robot/commands/driving/TurnForTime.java

index f87ec65dd676dbff81e9d98d0d588938205a038a..a15008b56d2869cfe2305b5ec113ebde42f913e8 100755 (executable)
@@ -2,11 +2,13 @@ package org.usfirst.frc.team3501.robot.commands.driving;
 
 import org.usfirst.frc.team3501.robot.Constants.Direction;
 
+import edu.wpi.first.wpilibj.Timer;
 import edu.wpi.first.wpilibj.command.Command;
 
 public class TurnForTime extends Command {
 
   public TurnForTime(double seconds, Direction direction) {
+    Timer timer = new Timer();
   }
 
   @Override