blob: 9907cfe1b17a6191a1d3ff18f06ee173c270787d [file] [log] [blame]
James Kuszmaulf7f5ec12013-11-01 17:58:58 -07001#include "bot3/control_loops/shooter/shooter.h"
2
3#include "aos/atom_code/init.h"
4
5int main() {
6 ::aos::Init();
7 bot3::control_loops::ShooterMotor shooter;
8 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}