Comran Morshed | 2a97bc8 | 2016-01-16 17:27:01 +0000 | [diff] [blame] | 1 | #include "y2016/control_loops/shooter/shooter.h" |
2 | |||||
John Park | 398c74a | 2018-10-20 21:17:39 -0700 | [diff] [blame^] | 3 | #include "aos/init.h" |
Comran Morshed | 2a97bc8 | 2016-01-16 17:27:01 +0000 | [diff] [blame] | 4 | |
5 | int main() { | ||||
6 | ::aos::Init(); | ||||
Austin Schuh | 09c2b0b | 2016-02-13 15:53:16 -0800 | [diff] [blame] | 7 | ::y2016::control_loops::shooter::Shooter shooter; |
Comran Morshed | 2a97bc8 | 2016-01-16 17:27:01 +0000 | [diff] [blame] | 8 | shooter.Run(); |
9 | ::aos::Cleanup(); | ||||
10 | return 0; | ||||
11 | } |