mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 04:41:10 +00:00
15 lines
352 B
C#
15 lines
352 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.Config
|
|||
|
{
|
|||
|
internal struct ScriptDocumentSettings
|
|||
|
{
|
|||
|
public Dictionary<int, HashSet<int>> FoldLevels; // <fold level, line numbers>
|
|||
|
public int CaretPosition;
|
|||
|
public int FirstVisibleLine;
|
|||
|
public string Filename;
|
|||
|
public bool IsActiveTab;
|
|||
|
public long Hash;
|
|||
|
}
|
|||
|
}
|