Initial commit of current work on Prime World Editor

This commit is contained in:
parax0
2015-07-26 17:39:49 -04:00
commit 66e8c2ebcb
305 changed files with 33469 additions and 0 deletions

20
Core/CAreaAttributes.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef CAREAATTRIBUTES_H
#define CAREAATTRIBUTES_H
#include <Resource/script/CScriptObject.h>
class CAreaAttributes
{
EGame mGame;
CScriptObject *mpObj;
public:
CAreaAttributes(CScriptObject *pObj);
~CAreaAttributes();
void SetObject(CScriptObject *pObj);
bool IsLayerEnabled();
bool IsSkyEnabled();
CModel* SkyModel();
};
#endif // CAREAATTRIBUTES_H