Exemple #1
0
        public void MakeNewProj()
        {
            Console.Out.WriteLine("WARNING: This will erase ALL data associated with the current project.");
            Console.Out.WriteLine("Continue? <y/n>: ");
            if (Console.In.ReadLine() == "y")
            {
                noteSheet  = new Sheet();
                or         = new OtoReader();
                projString = "New Project";
                vbset      = rndset = false;

                Console.Out.WriteLine("Done.");
            }
        }