mkdd/include/Osako/GIRecord.h
2024-01-05 02:33:53 +01:00

21 lines
319 B
C++

#ifndef GIRECORD_H
#define GIRECORD_H
#include "Osako/TARecord.h"
class GIRecord {
public:
GIRecord(TARecord &record);
bool isValid();
//operator const u8*() const { return (const u8 *)&mRecord; }
private:
TARecord mRecord;
u32 mTick;
char mSignature[3]; // GID
u8 mChecksum;
};
#endif