mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-11 08:20:17 +00:00
Add XChat Theme Manager (TingPing)
This commit is contained in:
committed by
Berke Viktor
parent
35821f3875
commit
6bca080d93
21
src/xtm/Program.cs
Normal file
21
src/xtm/Program.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace thememan
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new XTM());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user