summaryrefslogtreecommitdiff
path: root/src/Notepad/Infrastructure/System/IApplicationEnvironment.cs
blob: 64cc737f0ff32e20c64445745f2b7a3038d60810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Notepad.Infrastructure.System {
    public interface IApplicationEnvironment {
        void ShutDown();
    }

    public class ApplicationEnvironment : IApplicationEnvironment {
        public void ShutDown() {
            Environment.Exit(Environment.ExitCode);
        }
    }
}