예제 #1
0
 public LocalizedGossipMenuItem(GossipActionHandler callback, GossipActionDecider decider,
                                RealmLangKey confirmLangKey, RealmLangKey msgKey, params object[] msgArgs)
     : this(msgKey, msgArgs)
 {
     this.ConfirmText = new TranslatableItem(confirmLangKey, new object[0]);
     this.Action      = (IGossipAction) new NonNavigatingDecidingGossipAction(callback, decider);
 }
예제 #2
0
 public NonNavigatingDecidingGossipAction(GossipActionHandler handler, GossipActionDecider decider) : base(handler)
 {
     Decider = decider;
 }
예제 #3
0
 public LocalizedGossipMenuItem(GossipActionHandler callback, GossipActionDecider decider, RealmLangKey msgKey,
                                params object[] msgArgs)
     : this(msgKey, msgArgs)
 {
     this.Action = (IGossipAction) new NonNavigatingDecidingGossipAction(callback, decider);
 }
예제 #4
0
 public NonNavigatingDecidingGossipAction(GossipActionHandler handler, GossipActionDecider decider)
     : base(handler)
 {
     Decider = decider;
 }