MCPcopy Create free account
hub / github.com/GrowthEase/GameSentry / parameters

Method parameters

lib/component/agent/structs/method.js:109–115  ·  view source on GitHub ↗

Gets the parameters of this method.

()

Source from the content-addressed store, hash-verified

107
108 /** Gets the parameters of this method. */
109 get parameters() {
110 return Array.from(Array(this.parameterCount), (_, i) => {
111 const parameterName = Il2Cpp.Api._methodGetParameterName(this, i).readUtf8String();
112 const parameterType = Il2Cpp.Api._methodGetParameterType(this, i);
113 return new Il2Cpp.Parameter(parameterName, i, new Il2Cpp.Type(parameterType));
114 });
115 }
116
117 /** Gets the relative virtual address (RVA) of this method. */
118 get relativeVirtualAddress() {

Callers

nothing calls this directly

Calls 3

fromMethod · 0.45

Tested by

no test coverage detected