13 lines
131 B
C++
13 lines
131 B
C++
|
|
#ifndef _BODY_LOCUS_H
|
||
|
|
#define _BODY_LOCUS_H
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
class BodyCoords
|
||
|
|
{
|
||
|
|
uint32_t segment;
|
||
|
|
uint32_t coord;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|