CombatItemShowEventData.cs 420 B

12345678910111213141516
  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 string showName;
  13. public bool isExp;
  14. }
  15. }