diff --git a/Server/Forms/frmAbout.cs b/Server/Forms/frmAbout.cs deleted file mode 100644 index da0c37f1..00000000 --- a/Server/Forms/frmAbout.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace xServer.Forms -{ - public partial class FrmAbout : Form - { - public FrmAbout() - { - InitializeComponent(); - - lblVersion.Text = Settings.XMLSettings.VERSION; - rtxtContent.Text = Properties.Resources.TermsOfUse; - - lblCredits.Text = - "Credits: Banksy\n" + - " ResourceLib (Copyright (c) Daniel Doubrovkine, Vestris Inc., 2008-2013)\n" + - " protobuf (Copyright 2008 Google Inc.)\n\n" + - "Elevation Form Translators: Xenocode, Increment, DeadLine, Perfectionist,\n" + - " Qmz_, GameFire, navaro21"; - } - - private void btnOkay_Click(object sender, EventArgs e) - { - this.Close(); - } - } -}