mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 18:49:58 +00:00
19 lines
419 B
C++
19 lines
419 B
C++
#ifndef CSM_DOC_STATE_H
|
|
#define CSM_DOC_STATE_H
|
|
|
|
namespace CSMDoc
|
|
{
|
|
enum State
|
|
{
|
|
State_Modified = 1,
|
|
State_Locked = 2,
|
|
State_Operation = 4,
|
|
|
|
State_Saving = 8,
|
|
State_Verifying = 16,
|
|
State_Compiling = 32, // not implemented yet
|
|
State_Searching = 64 // not implemented yet
|
|
};
|
|
}
|
|
|
|
#endif
|