mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 18:24:34 +00:00
36 lines
840 B
C#
36 lines
840 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace PckStudio.Forms
|
|
{
|
|
public partial class goodbye : MetroFramework.Forms.MetroForm
|
|
{
|
|
public goodbye()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void buttonDonate_Click(object sender, EventArgs e)
|
|
{
|
|
System.Diagnostics.Process.Start("https://cash.app/$PhoenixARC");
|
|
}
|
|
|
|
private void buttonClose_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
|
|
private void goodbye_Load(object sender, EventArgs e)
|
|
{
|
|
System.IO.File.Create(Program.Appdata + "\\goodbyemark");
|
|
}
|
|
}
|
|
}
|