| 1234567891011121314151617181920212223 | 
							- using Core.Utility.Event;
 
- using GameLogic.Combat.Buff;
 
- using GameLogic.Combat.Hero.Turntable;
 
- using GameLogic.Combat.Skill;
 
- namespace Common.Utility.CombatEvent
 
- {
 
-     public class StartAddBuffEventData : EventDataBasic<StartAddBuffEventData>
 
-     {
 
-         public CombatHeroEntity source;
 
-         public CombatHeroEntity target;
 
-         public BuffInfo BuffInfo;
 
-         public bool isNotAddBuff;
 
-         public AddActionsType addActionsType;
 
-         protected override void ProDispose()
 
-         {
 
-             source = null;
 
-             target = null;
 
-             BuffInfo = null;
 
-         }
 
-     }
 
- }
 
 
  |