public override void execute(Data data) { if (!System.String.IsNullOrEmpty(Keyword)) { Keywords.Add(Keyword); } GameManager.Instance.InterruptServer.trigger(Keywords); }
public IModable copyDeep() { var result = new ModableStringList(); foreach (string s in this) { result.Add(s); } return(result); }