├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src └── main.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuJiani/frida-il2cpp-bridge-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuJiani/frida-il2cpp-bridge-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuJiani/frida-il2cpp-bridge-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuJiani/frida-il2cpp-bridge-template/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuJiani/frida-il2cpp-bridge-template/HEAD/src/main.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuJiani/frida-il2cpp-bridge-template/HEAD/yarn.lock --------------------------------------------------------------------------------