| 1082 | } |
| 1083 | |
| 1084 | bool Scripting::IsTypeFromGameScripts(const MClass* type) |
| 1085 | { |
| 1086 | const auto binaryModule = ManagedBinaryModule::GetModule(type ? type->GetAssembly() : nullptr); |
| 1087 | return binaryModule && binaryModule != GetBinaryModuleCorlib() && binaryModule != GetBinaryModuleFlaxEngine(); |
| 1088 | } |
| 1089 | |
| 1090 | void Scripting::RegisterObject(ScriptingObject* obj) |
| 1091 | { |
no test coverage detected