Skip to content

Commit 1e552cf

Browse files
Here is all the crap
0 parents  commit 1e552cf

File tree

61 files changed

+2933
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+2933
-0
lines changed

0301.Designer.cs

Lines changed: 129 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0301.cs

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Linq;
7+
using System.Text;
8+
using System.Threading.Tasks;
9+
using System.Windows.Forms;
10+
11+
namespace ClassiRune
12+
{
13+
public partial class Form2 : Form
14+
{
15+
public Form2()
16+
{
17+
InitializeComponent();
18+
}
19+
20+
private void Form2_FormClosing(object sender, FormClosingEventArgs e)
21+
{
22+
Application.Exit();
23+
}
24+
25+
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
26+
{
27+
Application.Exit();
28+
}
29+
30+
private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
31+
{
32+
MessageBox.Show("RuneScape Internet Client\nBy Jagex Limited\nCopyright (C) 2001", "About");
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)