Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ISymbolDocument.cs
Go to the documentation of this file.
2
3public interface ISymbolDocument
4{
5 string URL { get; }
6
8
9 Guid Language { get; }
10
12
14
15 bool HasEmbeddedSource { get; }
16
17 int SourceLength { get; }
18
19 byte[] GetCheckSum();
20
21 int FindClosestLine(int line);
22
23 byte[] GetSourceRange(int startLine, int startColumn, int endLine, int endColumn);
24}
byte[] GetSourceRange(int startLine, int startColumn, int endLine, int endColumn)