CombatItemShowEventData.cs 392 B

123456789101112131415
  1. using System.Collections.Generic;
  2. using Core.Utility.Event;
  3. using GameLogic.Combat.CombatTool;
  4. using UnityEngine;
  5. namespace Common.Utility.CombatEvent
  6. {
  7. public class CombatItemShowEventData: EventDataBasic<CombatItemShowEventData>
  8. {
  9. public int count;
  10. // public List<string> showItem;
  11. public Vector3 startPos_WorldPos;
  12. public bool isShowBag;
  13. }
  14. }