1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5using System;
6using System.Windows.Forms;
7
8namespace StatsViewer
9{
10  static class Program
11  {
12    /// <summary>
13    /// The main entry point for the application.
14    /// </summary>
15    [STAThread]
16    static void Main()
17    {
18      Application.EnableVisualStyles();
19      Application.SetCompatibleTextRenderingDefault(false);
20      Application.Run(new StatsViewer());
21    }
22  }
23}
24