2015-02-02 12:14:27 -05:00
|
|
|
#ifndef COLLECTTOTE_H
|
|
|
|
#define COLLECTTOTE_H
|
2015-01-16 19:29:55 -05:00
|
|
|
|
2015-01-17 12:55:51 -05:00
|
|
|
#include "Commands/Command.h"
|
2015-02-03 15:55:11 -05:00
|
|
|
#include "../../CommandBase.h"
|
|
|
|
#include "../../DentRobot.h"
|
2015-01-16 19:29:55 -05:00
|
|
|
#include "WPILib.h"
|
|
|
|
|
2015-02-02 12:14:27 -05:00
|
|
|
class CollectTote: public Command{
|
2015-01-16 20:12:48 -05:00
|
|
|
public:
|
2015-02-02 12:14:27 -05:00
|
|
|
CollectTote();
|
2015-01-16 20:12:48 -05:00
|
|
|
void Initialize();
|
|
|
|
void Execute();
|
|
|
|
bool IsFinished();
|
|
|
|
void End();
|
|
|
|
void Interrupted();
|
2015-01-16 19:29:55 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2015-02-07 13:28:08 -05:00
|
|
|
// vim: ts2:sw=2:et
|