Added support for loading dependencies of EVNT and STRG

This commit is contained in:
parax0
2016-07-27 03:24:15 -06:00
parent 7f2cac6216
commit 11a7b86120
5 changed files with 103 additions and 30 deletions

View File

@@ -256,6 +256,7 @@ CResource* CResourceEntry::Load(IInputStream& rInput)
switch (mType)
{
case eAnimation: mpResource = CAnimationLoader::LoadANIM(rInput, this); break;
case eAnimEventData: mpResource = CUnsupportedFormatLoader::LoadEVNT(rInput, this); break;
case eAnimSet: mpResource = CAnimSetLoader::LoadANCSOrCHAR(rInput, this); break;
case eArea: mpResource = CAreaLoader::LoadMREA(rInput, this); break;
case eDependencyGroup: mpResource = CDependencyGroupLoader::LoadDGRP(rInput, this); break;