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.
10 lines
252 B
10 lines
252 B
namespace Game
|
|
{
|
|
public abstract class PatchCode
|
|
{
|
|
// patch 号的定义,新增的patch 号必须要比现有的所有patch 号都要大,否则不会生效。
|
|
|
|
public const int PATCH_CODE_FIX_TEST = 1;
|
|
}
|
|
}
|
|
|
|
|