2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/CollectTote.h

20 lines
331 B
C++

#ifndef COLLECTTOTE_H
#define COLLECTTOTE_H
#include "Commands/Command.h"
#include "../CommandBase.h"
#include "../DentRobot.h"
#include "WPILib.h"
class CollectTote: public Command{
public:
CollectTote();
void Initialize();
void Execute();
bool IsFinished();
void End();
void Interrupted();
};
#endif