mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
16 lines
313 B
C#
16 lines
313 B
C#
using System;
|
|
|
|
namespace ET
|
|
{
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
|
|
public class FriendOfAttribute : Attribute
|
|
{
|
|
public Type Type;
|
|
|
|
public FriendOfAttribute(Type type)
|
|
{
|
|
this.Type = type;
|
|
}
|
|
}
|
|
} |