hand_control/src/data.h
2015-05-28 21:53:07 +02:00

9 lines
105 B
C++

#ifndef DATA_H
#define DATA_H
template <typename T>
struct Data
{
public:
T x, y, z, th;
};
#endif