2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 05:47:42 +00:00

DGRP Fixes

This commit is contained in:
2016-04-12 04:37:07 -07:00
parent 497ad50fa6
commit 14e0468adf
10 changed files with 99 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
#ifndef CDEPENDENCYGROUP_HPP
#define CDEPENDENCYGROUP_HPP
#include "CFactoryMgr.hpp"
namespace urde
{
class CDependencyGroup
{
std::vector<SObjectTag> x0_objectTags;
public:
CDependencyGroup(CInputStream& in);
void ReadFromStream(CInputStream& in);
};
CFactoryFnReturn FDependencyGroupFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& param);
}
#endif // CDEPENDENCYGROUP_HPP