Пример #1
0
 internal NPCEventArgs( NPC npc, int injuredLife, int injuredType )
     : base(npc)
 {
     this.InjuredLife = injuredLife;
     this.InjuredType = injuredType;
 }
Пример #2
0
 internal NPCEventArgs( NPC npc )
     : this(npc, 0, 0)
 {
 }