示例#1
0
文件: Event.cs 项目: manveti/DeCamp
 public override void apply(CampaignState s)
 {
     this.character = s.getCharacter(this.charId);
     s.removeCharacter(this.charId);
 }
示例#2
0
文件: Event.cs 项目: manveti/DeCamp
 public override void revert(CampaignState s)
 {
     s.removeCharacter(this.charId);
 }