blob: 2e1d87553e1c25fa94cce79473314b70ad8ebeb6 [file] [log] [blame]
Comran Morshed2a97bc82016-01-16 17:27:01 +00001#include "y2016/control_loops/shooter/shooter.h"
2
John Park398c74a2018-10-20 21:17:39 -07003#include "aos/init.h"
Comran Morshed2a97bc82016-01-16 17:27:01 +00004
5int main() {
6 ::aos::Init();
Austin Schuh09c2b0b2016-02-13 15:53:16 -08007 ::y2016::control_loops::shooter::Shooter shooter;
Comran Morshed2a97bc82016-01-16 17:27:01 +00008 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}