mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 21:31:04 +00:00
23 lines
450 B
C#
23 lines
450 B
C#
namespace BurnOutSharp.Wrappers
|
|
{
|
|
/// <summary>
|
|
/// Location that the data originated from
|
|
/// </summary>
|
|
public enum DataSource
|
|
{
|
|
/// <summary>
|
|
/// Unknown origin / testing
|
|
/// </summary>
|
|
UNKNOWN = 0,
|
|
|
|
/// <summary>
|
|
/// Byte array with offset
|
|
/// </summary>
|
|
ByteArray = 1,
|
|
|
|
/// <summary>
|
|
/// Stream
|
|
/// </summary>
|
|
Stream = 2,
|
|
}
|
|
} |