├── .gitattributes ├── .gitignore ├── MSEGui ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── MSEGui.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── MajiroStringEditor.sln ├── MajiroStringEditor ├── Constants.cs ├── KEY.cs ├── MajiroStringEditor.csproj ├── OBJ.cs └── Properties │ └── AssemblyInfo.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /MSEGui/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/Form1.Designer.cs -------------------------------------------------------------------------------- /MSEGui/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/Form1.cs -------------------------------------------------------------------------------- /MSEGui/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/Form1.resx -------------------------------------------------------------------------------- /MSEGui/MSEGui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/MSEGui.csproj -------------------------------------------------------------------------------- /MSEGui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/Program.cs -------------------------------------------------------------------------------- /MSEGui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MSEGui/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MSEGui/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/Properties/Resources.resx -------------------------------------------------------------------------------- /MSEGui/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MSEGui/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MSEGui/Properties/Settings.settings -------------------------------------------------------------------------------- /MajiroStringEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MajiroStringEditor.sln -------------------------------------------------------------------------------- /MajiroStringEditor/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MajiroStringEditor/Constants.cs -------------------------------------------------------------------------------- /MajiroStringEditor/KEY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MajiroStringEditor/KEY.cs -------------------------------------------------------------------------------- /MajiroStringEditor/MajiroStringEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MajiroStringEditor/MajiroStringEditor.csproj -------------------------------------------------------------------------------- /MajiroStringEditor/OBJ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MajiroStringEditor/OBJ.cs -------------------------------------------------------------------------------- /MajiroStringEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/MajiroStringEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcussacana/MajiroStringEditor/HEAD/README.md --------------------------------------------------------------------------------