blob: 18df9aa132acba881e44f60848df06fb20e356db [file] [log] [blame]
Austin Schuh80ff2e12014-03-08 12:06:19 -08001#include <stdio.h>
Ben Fredrickson8c6868c2014-03-01 07:52:53 +00002
Ben Fredrickson8c6868c2014-03-01 07:52:53 +00003#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
8using ::aos::time::Time;
9
10int 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