metaforce/Runtime/CDependencyGroup.hpp

19 lines
549 B
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-04-12 04:37:07 -07:00
#include <vector>
#include "Runtime/CFactoryMgr.hpp"
2016-04-12 04:37:07 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
class CDependencyGroup {
std::vector<SObjectTag> x0_objectTags;
2016-04-12 04:37:07 -07:00
public:
explicit CDependencyGroup(CInputStream& in);
2018-12-07 21:30:43 -08:00
void ReadFromStream(CInputStream& in);
const std::vector<SObjectTag>& GetObjectTagVector() const { return x0_objectTags; }
2016-04-12 04:37:07 -07:00
};
CFactoryFnReturn FDependencyGroupFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& param,
CObjectReference* selfRef);
2021-04-10 01:42:06 -07:00
} // namespace metaforce