Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SymbolDocumentInfo.cs
Go to the documentation of this file.
2
4
6{
7 internal static readonly Guid DocumentType_Text = new Guid(1518771467, 26129, 4563, 189, 42, 0, 0, 248, 8, 73, 189);
8
9 public string FileName { get; }
10
11 public virtual Guid Language => Guid.Empty;
12
13 public virtual Guid LanguageVendor => Guid.Empty;
14
16
17 internal SymbolDocumentInfo(string fileName)
18 {
19 ContractUtils.RequiresNotNull(fileName, "fileName");
20 FileName = fileName;
21 }
22}
static void RequiresNotNull(object value, string paramName)
static readonly Guid Empty
Definition Guid.cs:86