19 lines
173 B
C
19 lines
173 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct state {
|
|
float rx;
|
|
float ry;
|
|
float rz;
|
|
float tx;
|
|
float ty;
|
|
float tz;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|