NerfUS game coordinator for the Nerf gun firing range

Dependencies:   HardwareInterface mbed-rtos mbed

Fork of NerfUS by NerfUS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Target.cpp Source File

Target.cpp

00001 #include "Target.hpp"
00002 
00003 TargetInfo make_TargetInfo(const int id, const TargetType type, int timeout_ms)
00004 {
00005     TargetInfo target = {id, type, timeout_ms};
00006     return target;
00007 }
00008