Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DynamicAttribute.cs
Go to the documentation of this file.
2
4
6public sealed class DynamicAttribute : Attribute
7{
8 private readonly bool[] _transformFlags;
9
11
13 {
14 _transformFlags = new bool[1] { true };
15 }
16
18 {
19 if (transformFlags == null)
20 {
21 throw new ArgumentNullException("transformFlags");
22 }
24 }
25}