AttackByEventArgs inherits from EventArgs again

This commit is contained in:
PrPleGoo
2019-04-05 19:29:16 +02:00
parent 495315565a
commit ddde077d16

View File

@@ -30,8 +30,9 @@ namespace Content.Server.GameObjects.EntitySystems
bool AttackBy(AttackByEventArgs eventArgs); bool AttackBy(AttackByEventArgs eventArgs);
} }
public class AttackByEventArgs : AttackHandEventArgs public class AttackByEventArgs : EventArgs
{ {
public IEntity User { get; set; }
public IEntity AttackWith { get; set; } public IEntity AttackWith { get; set; }
} }