Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
GeneratedCodeAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = false)]
4public sealed class GeneratedCodeAttribute : Attribute
5{
6 private readonly string _tool;
7
8 private readonly string _version;
9
10 public string? Tool => _tool;
11
12 public string? Version => _version;
13
14 public GeneratedCodeAttribute(string? tool, string? version)
15 {
16 _tool = tool;
17 _version = version;
18 }
19}