mirror of
https://github.com/open-goal/jak-project
synced 2026-09-12 20:56:09 -04:00
14 lines
298 B
C
14 lines
298 B
C
#ifndef JAK_V2_STATICRECORD_H
|
|
#define JAK_V2_STATICRECORD_H
|
|
|
|
struct StaticLinkRecord {
|
|
enum Kind { TYPE_PTR, SYMBOL_PTR } kind;
|
|
|
|
StaticLinkRecord() = default;
|
|
StaticLinkRecord(Kind _kind, int _offset) : kind(_kind), offset(_offset) {}
|
|
|
|
int offset = -1;
|
|
};
|
|
|
|
#endif // JAK_V2_STATICRECORD_H
|