Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EmptyCAHolder.cs
Go to the documentation of this file.
2
4{
5 internal EmptyCAHolder()
6 {
7 }
8
9 object[] ICustomAttributeProvider.GetCustomAttributes(Type attributeType, bool inherit)
10 {
11 return Array.Empty<object>();
12 }
13
15 {
16 return Array.Empty<object>();
17 }
18
19 bool ICustomAttributeProvider.IsDefined(Type attributeType, bool inherit)
20 {
21 return false;
22 }
23}
bool IsDefined(Type attributeType, bool inherit)
object[] GetCustomAttributes(bool inherit)