mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
16 lines
215 B
C++
16 lines
215 B
C++
#pragma once
|
|
|
|
#include "Types.h"
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
class CMIPS;
|
|
|
|
class CVuAnalysis
|
|
{
|
|
public:
|
|
static void Analyse(CMIPS*, uint32, uint32);
|
|
|
|
private:
|
|
static uint32 FindBlockStart(CMIPS*, uint32);
|
|
};
|