mirror of https://github.com/AxioDL/metaforce.git
20 lines
494 B
C++
20 lines
494 B
C++
#pragma once
|
|
|
|
#include "CFactoryMgr.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CDependencyGroup
|
|
{
|
|
std::vector<SObjectTag> x0_objectTags;
|
|
public:
|
|
CDependencyGroup(CInputStream& in);
|
|
void ReadFromStream(CInputStream& in);
|
|
const std::vector<SObjectTag>& GetObjectTagVector() const { return x0_objectTags; }
|
|
};
|
|
|
|
CFactoryFnReturn FDependencyGroupFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& param,
|
|
CObjectReference* selfRef);
|
|
}
|
|
|