mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-26 11:34:44 -05:00
27 lines
716 B
C#
27 lines
716 B
C#
using System.Linq;
|
|
using System.Windows.Forms;
|
|
using NHSE.Injection;
|
|
|
|
namespace NHSE.WinForms
|
|
{
|
|
public partial class SimpleHexEditor : Form
|
|
{
|
|
public byte[] Bytes;
|
|
|
|
public SimpleHexEditor(byte[] originalBytes)
|
|
{
|
|
InitializeComponent();
|
|
RTB_RAM.Text = string.Join(" ", originalBytes.Select(z => $"{z:X2}"));
|
|
Bytes = originalBytes;
|
|
}
|
|
|
|
private void Update_Click(object sender, System.EventArgs e)
|
|
{
|
|
var bytestring = RTB_RAM.Text.Replace("\t", "").Replace(" ", "").Trim();
|
|
Bytes = Decoder.StringToByteArray(bytestring);
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
}
|
|
}
|