public override void execute(Data data)
    {
        if (!System.String.IsNullOrEmpty(Keyword))
        {
            Keywords.Add(Keyword);
        }

        GameManager.Instance.InterruptServer.trigger(Keywords);
    }
Esempio n. 2
0
    public IModable copyDeep()
    {
        var result = new ModableStringList();

        foreach (string s in this)
        {
            result.Add(s);
        }

        return(result);
    }