omicron/src/state.h

14 lines
151 B
C

#ifndef _state_h_
#define _state_h_
typedef struct {
float x;
float y;
float z;
float rx;
float ry;
float t;
} State;
#endif