Exemple #1
0
        protected static void LoopAction(object sender, EventArgs e)
        {
            StageBoxNumericEntry entryCount = new StageBoxNumericEntry();

            if (entryCount.ShowDialog("Animation Looper", "Number of runthroughs:") == DialogResult.OK)
            {
                GetInstance <CHR0Wrapper>().Loop((entryCount.NewValue) - 1);
            }
        }
Exemple #2
0
        protected static void NewTBSTAction(object sender, EventArgs e)
        {
            StageBoxNumericEntry entryCount = new StageBoxNumericEntry();

            if (entryCount.ShowDialog("TBST Generation", "Number of Entries:") == DialogResult.OK)
            {
                GetInstance <ARCWrapper>().NewTBST(entryCount.NewValue);
            }
        }