Files
LegacyConsoleLauncher/Form3.cs
GatoWare 9153341cc2 add per-account skins, skin preview and code refactor
- add per-account skin system
- add automatic 64x64 → 64x32 skin conversion
- add built-in skin preview in launcher UI
- apply selected skin automatically on game launch
- add original skin backup and restore system
- improve launcher layout with integrated skin preview
- refactor Form1 logic into multiple partial class files
2026-03-09 20:18:13 -03:00

21 lines
382 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 LegacyConsoleLauncher
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
}
}
}