mirror of https://github.com/PrimeDecomp/prime.git
24 lines
502 B
C++
24 lines
502 B
C++
#ifndef _CDEPENDENCYGROUP
|
|
#define _CDEPENDENCYGROUP
|
|
|
|
#include "Kyoto/SObjectTag.hpp"
|
|
|
|
#include "rstl/vector.hpp"
|
|
|
|
class CInputStream;
|
|
|
|
class CDependencyGroup {
|
|
public:
|
|
explicit CDependencyGroup(CInputStream& in);
|
|
~CDependencyGroup() {}
|
|
void ReadFromStream(CInputStream& in);
|
|
int GetCountForResType(FourCC type) const;
|
|
|
|
const rstl::vector< SObjectTag >& GetObjectTagVector() const { return x0_objectTags; }
|
|
|
|
private:
|
|
rstl::vector< SObjectTag > x0_objectTags;
|
|
};
|
|
|
|
#endif // _CDEPENDENCYGROUP
|