Files
FC1/Editor/LevelInfo.h
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

38 lines
915 B
C++

////////////////////////////////////////////////////////////////////////////
//
// Crytek Engine Source File.
// Copyright (C), Crytek Studios, 2002.
// -------------------------------------------------------------------------
// File name: levelinfo.h
// Version: v1.00
// Created: 4/6/2003 by Timur.
// Compilers: Visual Studio.NET
// Description:
// -------------------------------------------------------------------------
// History:
//
////////////////////////////////////////////////////////////////////////////
#ifndef __levelinfo_h__
#define __levelinfo_h__
#pragma once
/*! CLevelInfo provides methods for getting information about current level.
*/
class CLevelInfo
{
public:
CLevelInfo();
void Validate();
void SaveLevelResources( const CString &toPath );
private:
void ValidateObjects();
void ValidateMaterials();
CErrorReport *m_pReport;
};
#endif // __levelinfo_h__