mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-27 17:51:42 +00:00
26 lines
480 B
C++
26 lines
480 B
C++
#ifndef CMAPAREA_H
|
|
#define CMAPAREA_H
|
|
|
|
#include "CResource.h"
|
|
|
|
// Barebones class
|
|
class CMapArea : public CResource
|
|
{
|
|
friend class CUnsupportedFormatLoader;
|
|
CAssetID mNameString;
|
|
|
|
public:
|
|
CMapArea(CResourceEntry *pEntry = 0)
|
|
: CResource(pEntry)
|
|
{}
|
|
|
|
CDependencyTree* BuildDependencyTree() const
|
|
{
|
|
CDependencyTree *pTree = new CDependencyTree();
|
|
pTree->AddDependency(mNameString);
|
|
return pTree;
|
|
}
|
|
};
|
|
|
|
#endif // CMAPAREA_H
|