Kbinxmlcs
Konami binary XML decoder/encoder
Install / Use
/learn @FSH-B/KbinxmlcsREADME
kbinxmlcs
A tool for decoding Konami's binary XML format.
Usage in C#:
using System;
using System.IO;
using kbinxmlcs;
public class Program
{
static void Main(string[] args)
{
byte[] data = File.ReadAllBytes("test.bin");
XmlReader xmlReader = new XmlReader(data);
Console.WriteLine(XmlReader.Read().OuterXml);
}
}
