mirror of
https://github.com/SwareJonge/mkdd.git
synced 2024-12-04 03:21:25 +00:00
21 lines
319 B
C++
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
|