예제 #1
0
파일: Program.cs 프로젝트: ares454/OO-Final
        static void Main(string[] args)
        {
            Roommaker maker = Roommaker.getInstance();

            maker.createMap();
            Console.Write("Press any key to exit...");
            Console.ReadKey();
        }
예제 #2
0
        public static Roommaker getInstance()
        {
            if (instance == null)
            {
                instance = new Roommaker();
            }

            return(instance);
        }