CombatItemShowEventData.cs 449 B

1234567891011121314151617
  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. public int addValue;
  15. }
  16. }