mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-15 08:06:10 +00:00
Began initial implementation of the game exporter and game project classes
This commit is contained in:
10
src/Core/GameProject/CGameProject.cpp
Normal file
10
src/Core/GameProject/CGameProject.cpp
Normal 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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user