123456789101112131415 |
- namespace GFGGame
- {
- public class ConstStorageId
- {
- public const int STORAGE_GUIDE = 10000;//引导起始Id,引导存储id:10000+引导编号id
- public const int STORAGE_SKIP_GUIDE = 20000;//跳过引导,0不跳过,1跳过
- public const int STORAGE_AUTO_PLAY = 20001;//自动战斗,0不自动战斗,1自动战斗
- public const int STORAGE_AUTO_PLAY_SPEED = 20002;//战斗速度
- public const int SKIP_CHECK_OPEN = 20003;//跳过检查功能开启0不跳过,1跳过
- public const int STORAGE_CUSTOME_SUIT_INDEX = 20004;//自定义套装当前使用索引
- public const int FIELD_AUTO_PLAY_SPEED = 20005;//田野调查战斗速度
- }
- }
|