mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
894279b4ba
WARNING: because of the large amount of added/modified code, bugs are possible, so backup your resources, save often and report bugs.
24 lines
624 B
C#
24 lines
624 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 string ResourceLocation; // Used by ScriptResourceDocumentTab only
|
|
public ScriptType ScriptType; // Used by ScriptResourceDocumentTab only
|
|
public ScriptDocumentTabType TabType;
|
|
public bool IsActiveTab;
|
|
public long Hash;
|
|
}
|
|
|
|
internal enum ScriptDocumentTabType
|
|
{
|
|
LUMP,
|
|
RESOURCE,
|
|
FILE,
|
|
}
|
|
}
|