mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
13 lines
291 B
C#
13 lines
291 B
C#
namespace AssetRipper.Core.Classes.EditorSettings
|
|
{
|
|
/// <summary>
|
|
/// <see href="https://github.com/Unity-Technologies/UnityCsReference/blob/master/Editor/Mono/EditorSettings.bindings.cs"/>
|
|
/// </summary>
|
|
public enum LineEndingsMode
|
|
{
|
|
OSNative = 0,
|
|
Unix = 1,
|
|
Windows = 2,
|
|
}
|
|
}
|