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