2023-06-06 18:39:23 -07:00
|
|
|
namespace SupaLidlGame.Events;
|
|
|
|
|
2023-08-07 02:38:51 -07:00
|
|
|
public partial class HurtArgs : HealthChangedArgs
|
2023-06-06 18:39:23 -07:00
|
|
|
{
|
|
|
|
public Characters.Character Attacker { get; set; }
|
|
|
|
|
|
|
|
public Items.Weapon Weapon { get; set; }
|
|
|
|
}
|