Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DependencyAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
4public sealed class DependencyAttribute : Attribute
5{
6 public string DependentAssembly { get; }
7
8 public LoadHint LoadHint { get; }
9
10 public DependencyAttribute(string dependentAssemblyArgument, LoadHint loadHintArgument)
11 {
12 DependentAssembly = dependentAssemblyArgument;
13 LoadHint = loadHintArgument;
14 }
15}
DependencyAttribute(string dependentAssemblyArgument, LoadHint loadHintArgument)