Austin Schuh | 80ff2e1 | 2014-03-08 12:06:19 -0800 | [diff] [blame] | 1 | #include <stdio.h> |
Ben Fredrickson | 8c6868c | 2014-03-01 07:52:53 +0000 | [diff] [blame] | 2 | |
Ben Fredrickson | 8c6868c | 2014-03-01 07:52:53 +0000 | [diff] [blame] | 3 | #include "aos/linux_code/init.h" |
| 4 | #include "aos/common/logging/logging.h" |
| 5 | #include "frc971/actions/shoot_action.q.h" |
| 6 | #include "frc971/actions/shoot_action.h" |
| 7 | |
| 8 | using ::aos::time::Time; |
| 9 | |
| 10 | int main(int /*argc*/, char * /*argv*/[]) { |
| 11 | ::aos::Init(); |
| 12 | |
| 13 | frc971::actions::ShootAction shoot(&::frc971::actions::shoot_action); |
| 14 | shoot.Run(); |
| 15 | |
| 16 | ::aos::Cleanup(); |
| 17 | return 0; |
| 18 | } |
| 19 | |