You've already forked PrimeRemasterStructs
mirror of
https://github.com/PrimeDecomp/PrimeRemasterStructs.git
synced 2026-03-31 14:23:23 -07:00
15 lines
204 B
Plaintext
15 lines
204 B
Plaintext
#ifndef _DEPENDENCYGROUP
|
|
#define _DEPENDENCYGROUP
|
|
|
|
struct Dependency {
|
|
uint32 type <read=FourCCInt>;
|
|
CGuid id;
|
|
};
|
|
|
|
struct DependencyGroup {
|
|
uint32 count;
|
|
Dependency dep[count];
|
|
};
|
|
|
|
#endif
|