Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AssemblyTitleAttribute.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
4public sealed class AssemblyTitleAttribute : Attribute
5{
6 public string Title { get; }
7
8 public AssemblyTitleAttribute(string title)
9 {
10 Title = title;
11 }
12}