mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 06:01:05 -05:00
18 lines
364 B
C#
18 lines
364 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 DSPRE {
|
|
public partial class MoveEditor : Form {
|
|
public MoveEditor() {
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|