Example #1
0
        private void ApplyStashToStage(IStashEntry stash, bool replace)
        {
            if (replace)
            {
                stage.Clear();
            }

            stage.SetLobby(stash.GetLobby());
            stage.Add(stash);
        }
Example #2
0
 private ICommandResult Clear(CommandContext arg)
 {
     stage.Clear();
     return(new TextResult("The stage has been cleared."));
 }