mirror of
https://github.com/OxyZin/LegacyConsoleLauncher.git
synced 2026-07-18 05:11:02 +00:00
- 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
21 lines
382 B
C#
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();
|
|
}
|
|
}
|
|
}
|