mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 21:13:05 +00:00
20 lines
352 B
C#
20 lines
352 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.Windows.Forms;
|
|||
|
|
|||
|
namespace PKHeX
|
|||
|
{
|
|||
|
public partial class CodeGenerator : Form
|
|||
|
{
|
|||
|
public CodeGenerator()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|