| 1201 | } |
| 1202 | |
| 1203 | void ManagedBinaryModule::GetMethods(const ScriptingTypeHandle& typeHandle, Array<void*>& methods) |
| 1204 | { |
| 1205 | const ScriptingType& type = typeHandle.GetType(); |
| 1206 | if (type.ManagedClass) |
| 1207 | { |
| 1208 | const auto& mMethods = type.ManagedClass->GetMethods(); |
| 1209 | methods.Add((void* const*)mMethods.Get(), mMethods.Count()); |
| 1210 | } |
| 1211 | } |
| 1212 | |
| 1213 | void* ManagedBinaryModule::FindMethod(const ScriptingTypeHandle& typeHandle, const StringAnsiView& name, int32 numParams) |
| 1214 | { |