mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
23 lines
610 B
C#
23 lines
610 B
C#
namespace Robust.Shared.ContentPack;
|
|
|
|
/// <summary>
|
|
/// Seekability force mode for ResourceManager.
|
|
/// </summary>
|
|
public enum StreamSeekMode
|
|
{
|
|
/// <summary>
|
|
/// Do not do anything special. Streams will be seekable if the VFS can provide it (e.g. not compressed).
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// All streams will be forced as seekable by buffering them in memory if necessary.
|
|
/// </summary>
|
|
ForceSeekable = 1,
|
|
|
|
/// <summary>
|
|
/// Force streams to be non-seekable by wrapping them in another stream instances.
|
|
/// </summary>
|
|
ForceNonSeekable = 2
|
|
}
|