// // Constants.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace NosSmooth.PacketSerializersGenerator; /// /// Contains constants needed for the generation. /// public class Constants { /// /// Gets the full name of the generate source attribute class. /// public static string GenerateSourceAttributeClass => "NosSmooth.Packets.Attributes.GenerateSerializerAttribute"; /// /// Gets the full name of the packet attribute classes that are used for the generation. /// public static string PacketAttributesClassRegex => @"^NosSmooth\.Packets\.Attributes\.Packet.*"; }