Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ResourceConsumptionAttribute.cs
Go to the documentation of this file.
2
4
5[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property, Inherited = false)]
6[Conditional("RESOURCE_ANNOTATION_WORK")]
8{
10
12
14 {
15 ResourceScope = resourceScope;
16 ConsumptionScope = resourceScope;
17 }
18
19 public ResourceConsumptionAttribute(ResourceScope resourceScope, ResourceScope consumptionScope)
20 {
21 ResourceScope = resourceScope;
22 ConsumptionScope = consumptionScope;
23 }
24}
ResourceConsumptionAttribute(ResourceScope resourceScope, ResourceScope consumptionScope)