Skip to content

Commit cad949f

Browse files
committed
Make attributes public
1 parent cbe90ac commit cad949f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Attributes.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
namespace SimpleECS
22
{
33
[System.AttributeUsage(System.AttributeTargets.Parameter, Inherited = false, AllowMultiple = false)]
4-
sealed class BannedAttribute : System.Attribute
4+
public sealed class BannedAttribute : System.Attribute
55
{
66
}
77
[System.AttributeUsage(System.AttributeTargets.Parameter, Inherited = false, AllowMultiple = false)]
8-
sealed class GlobalAttribute : System.Attribute
8+
public sealed class GlobalAttribute : System.Attribute
99
{
1010
}
1111
[System.AttributeUsage(System.AttributeTargets.Parameter, Inherited = false, AllowMultiple = false)]
12-
sealed class ChangedAttribute : System.Attribute
12+
public sealed class ChangedAttribute : System.Attribute
1313
{
1414
}
1515
}

0 commit comments

Comments
 (0)