BaseGunInfo.cs 469 B

123456789101112131415161718192021222324252627
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using System;
  5. namespace ShotSimulator.Train.Info
  6. {
  7. //public enum MagazineState
  8. //{
  9. // Separation,
  10. // ReLoad
  11. //}
  12. [Serializable]
  13. public class BaseGunInfo
  14. {
  15. public string gunName;
  16. public bool isNeedConsumeBullet;
  17. public bool unlimitedMagazine;
  18. public int magazineCapacity;
  19. public int totalBulletNums;
  20. }
  21. }