Example #1
0
        public ReciPage(ReciFile file)
        {
            handler     = new ReciPageHandler(file);
            DataContext = handler;

            InitializeComponent();
        }
Example #2
0
        public ReciPageHandler(ReciFile file)
        {
            MemOffsetFallback = "211A9890"; // PCSX2 CCZ's eng patch
            //fileType = Enum.FileType.KH2_MIXDATA;
            //subBarName = "reci";
            stringToFind = "MIRE";

            findAddress();
            Console.WriteLine("DEBUG > ReciPageHandler > Processing file...");
            ReciFileLoaded = file;
            processFile();
            Console.WriteLine("DEBUG > ReciPageHandler > File processed!");
        }