Exemple #1
0
        public static void OpenUpperIntermediate(MainRules main)
        {
            RulesElementary rule = new RulesElementary("Upper-IntermediateRule");

            rule.Show();
            main.Close();
        }
Exemple #2
0
        public static void OpenElementary(MainRules main)
        {
            RulesElementary rule = new RulesElementary("Elementary");

            rule.Show();
            main.Close();
        }
Exemple #3
0
        public static void OpenPreIntermediate(MainRules main)
        {
            RulesElementary rule = new RulesElementary("Pre-Intermediate");

            rule.Show();
            main.Close();
        }
Exemple #4
0
        public static void OpenRuleElementary(string level, Rule rule)
        {
            RulesElementary main = new RulesElementary(level);

            main.Show();
            rule.Close();
        }