From 90f21502c21e0cff38ee961b1bc7c4d96edba461 Mon Sep 17 00:00:00 2001 From: Dioksin Date: Fri, 28 Oct 2016 10:26:18 +0300 Subject: Chart was added to Quotes plugin --- plugins/Quotes/QuotesChart/Program.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 plugins/Quotes/QuotesChart/Program.cs (limited to 'plugins/Quotes/QuotesChart/Program.cs') diff --git a/plugins/Quotes/QuotesChart/Program.cs b/plugins/Quotes/QuotesChart/Program.cs new file mode 100644 index 0000000000..d2c79f5966 --- /dev/null +++ b/plugins/Quotes/QuotesChart/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace QuotesChart +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main(string[] args) + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new FormMirandaQuotesChart()); + } + } +} -- cgit v1.2.3