You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
347 B

1 month ago
using System;
using System.Collections.Generic;
namespace ProtoCSStruct
{
public static class Define
{
//字符串最大大小,太大的自己想办法处理
public const int MaxStringLength = 32768;
public const string FileHeader = "// Generated by the protocsstruct compiler. DO NOT EDIT!\n";
}
}