//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 loyalsoft. All rights reserved.
// Homepage: http://www.game7000.com/
// Feedback: http://www.game7000.com/
//------------------------------------------------------------
using System;
namespace GameFramework.FileSystem
{
///
/// 文件系统访问方式。
///
[Flags]
public enum FileSystemAccess : byte
{
///
/// 未指定。
///
Unspecified = 0,
///
/// 只可读。
///
Read = 1,
///
/// 只可写。
///
Write = 2,
///
/// 可读写。
///
ReadWrite = 3
}
}