Files
2023-03-13 01:39:05 -04:00

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