mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
16 lines
248 B
C
16 lines
248 B
C
|
|
#ifndef Pickup_H
|
||
|
|
#define Pickup_H
|
||
|
|
|
||
|
|
#include "Commands/CommandGroup.h"
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Pickup a soda can (if one is between the open claws) and
|
||
|
|
* get it in a safe state to drive around.
|
||
|
|
*/
|
||
|
|
class Pickup: public CommandGroup {
|
||
|
|
public:
|
||
|
|
Pickup();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|