Beispiel #1
0
        static void Main(string[] args)
        {
            var PH = new PharmacyForm();

            Application.Run(PH);
            //FlashCard.Get1FC(PH);
            if (args.Length == 0)
            {
                //MneumonicSystem.Phonetic();
                //TypingGame.TypingGameStart();
                //WorkingMemoryGame.Play(10, 3, true);//keep constant at this value for accurate stats
                //Arithmetic.Game(10, 2, 11, 20);

                //Console.WriteLine("Do a plank or prone y");
                //Timer();
                //FlashCard.FlashCards();
                //if scores increase run a rnd p**n file
            }
            else if (args[0] == "fc")
            {
                new Deck("").DisplayAllFC();
            }
            else if (args[0] == "tg")
            {
                TypingGame.TypingGameStart();
            }
            else if (args[0] == "ph")
            {
                MneumonicSystem.Phonetic();
            }
            else if (args[0] == "read")
            {
                LoopDelegate ld = new LoopDelegate(OneRandRead);

                InfRounds(ld);
            }
            else if (args[0] == "wm")
            {
                WorkingMemoryGame.Play(10, 2, true);//keep constant at this value for accurate stats
            }
            else if (args[0] == "celeb")
            {
                MneumonicSystem.Celebrity();
            }
            else if (args[0] == "ag")
            {
                Arithmetic.Game(10, 2, 4, 20);
            }
            else if (args[0] == "timer")
            {
                Timer();
            }
            else if (args[0] == "test")
            {
                TestP();
            }
        }
Beispiel #2
0
        private static void OneRandRead()
        {
            int foo = intList.RandInt(3, 0);

            WorkingMemoryGame.DisplayJournal();
        }