IEnumerator ExecuteAfterTime(float time, string author, string message, string key, string other)
    {
        yield return(new WaitForSeconds(time));

        computer.NewPublication(author, message, key, other);
    }
Example #2
0
 public void Publish()
 {
     computer.NewPublication(author, text, key, photo);
 }