Add gitignores for Automake and add new files

This commit is contained in:
2024-11-21 02:31:37 +11:00
parent 4f0da885dd
commit 30da26f0e4
8 changed files with 6466 additions and 15 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef _BODY_LOCUS_H
#define _BODY_LOCUS_H
#include <cstdint>
class BodyCoords
{
uint32_t segment;
uint32_t coord;
};
#endif