mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-14 16:41:26 +00:00
14 lines
No EOL
382 B
C#
14 lines
No EOL
382 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;
|
|
}
|
|
} |