Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: LedController mbed-rtos mbed NerfUSXbee Servomotor TargetManager
Fork of NerfUS by
Diff: include/TargetManager.hpp
- Revision:
- 28:8fc53a870691
- Child:
- 30:412a779cf607
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/include/TargetManager.hpp Mon Mar 27 18:34:07 2017 -0400
@@ -0,0 +1,20 @@
+#ifndef TARGET_MANAGER_HPP
+#define TARGET_MANAGER_HPP
+
+#include "TargetInfo.hpp"
+#include "TargetManagerInterface.hpp"
+
+#include <vector>
+
+class TargetManager : public TargetManagerInterface
+{
+ public:
+ void execute(const std::vector<TargetInfo> sequence);
+
+ virtual void target_missed(int target_id);
+ virtual void target_hit(int target_id);
+
+ private:
+};
+
+#endif
