示例#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)
 {
 }