mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
27 lines
429 B
C++
27 lines
429 B
C++
#ifndef CSM_WOLRD_SCOPE_H
|
|
#define CSM_WOLRD_SCOPE_H
|
|
|
|
namespace ESM
|
|
{
|
|
class RefId;
|
|
}
|
|
|
|
namespace CSMWorld
|
|
{
|
|
enum Scope
|
|
{
|
|
// record stored in content file
|
|
Scope_Content = 1,
|
|
|
|
// record stored in project file
|
|
Scope_Project = 2,
|
|
|
|
// record that exists only for the duration of one editing session
|
|
Scope_Session = 4
|
|
};
|
|
|
|
Scope getScopeFromId(ESM::RefId id);
|
|
}
|
|
|
|
#endif
|