using FishNet.Utility.Constant;
using System;
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo(UtilityConstants.CODEGEN_ASSEMBLY_NAME)]
namespace FishNet.Serializing.Helping
{
///
/// Method is a comparer for a value type.
///
public class CustomComparerAttribute : Attribute { }
///
/// Method or type will be made public by codegen.
///
internal class CodegenMakePublicAttribute : Attribute { }
///
/// Field or type will be excluded from codegen serialization.
///
public class CodegenExcludeAttribute : Attribute { }
///
/// THIS DOES NOT DO ANYTHING AT THIS TIME.
/// It would do -> Type will be included in codegen serialization.
///
internal class CodegenIncludeAttribute : Attribute { }
}