Files
salmanoff/core/include/bodyCoords.h
T

13 lines
131 B
C++

#ifndef _BODY_LOCUS_H
#define _BODY_LOCUS_H
#include <cstdint>
class BodyCoords
{
uint32_t segment;
uint32_t coord;
};
#endif