ConstStorageId.cs 432 B

123456789101112
  1. namespace GFGGame
  2. {
  3. public class ConstStorageId
  4. {
  5. public const int STORAGE_GUIDE = 10000;//引导起始Id,引导存储id:10000+引导编号id
  6. public const int STORAGE_SKIP_GUIDE = 20000;//跳过引导,0不跳过,1跳过
  7. public const int STORAGE_AUTO_PLAY = 20001;//自动战斗,0不自动战斗,1自动战斗
  8. public const int STORAGE_AUTO_PLAY_SPEED = 20002;//战斗速度
  9. }
  10. }