Began initial implementation of the game exporter and game project classes

This commit is contained in:
parax0
2016-05-22 00:58:52 -06:00
parent 3009f06d11
commit 5f2064178c
19 changed files with 682 additions and 310 deletions

View File

@@ -0,0 +1,10 @@
#include "CGameProject.h"
void CGameProject::AddPackage(CPackage *pPackage, bool WorldPak)
{
if (WorldPak)
mWorldPaks.push_back(pPackage);
else
mResourcePaks.push_back(pPackage);
}