public Settings()

in GameOfLife/EmulateExternalLib/Settings.cs [15:22]


        public Settings()
        {
            applyCommand = new DelegateCommand(Apply, () => true);
            cancelCommand = new DelegateCommand(Cancel, () => true);

            Width = origWidth = 80;
            Height = origHeight = 50;
        }