CombatItemShowEventData.cs 363 B

1234567891011121314
  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 List<string> showItem;
  10. public Vector3 startPos_WorldPos;
  11. public bool isShowBag;
  12. }
  13. }