Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
GuidAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)]
4public sealed class GuidAttribute : Attribute
5{
6 public string Value { get; }
7
8 public GuidAttribute(string guid)
9 {
10 Value = guid;
11 }
12}