metaforce/Runtime/CDependencyGroup.hpp

19 lines
530 B
C++
Raw Normal View History

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