| 744 | } |
| 745 | |
| 746 | bool ScriptingEngineNet::HasEntityScriptInstance(const Entity& entity) |
| 747 | { |
| 748 | if (!isInitialized) |
| 749 | { |
| 750 | return false; |
| 751 | } |
| 752 | |
| 753 | return entityToManagedObjects.find(entity.GetID()) != entityToManagedObjects.end(); |
| 754 | } |
| 755 | |
| 756 | void ScriptingEngineNet::CopyNuakeNETAssemblies(const std::string& path) |
| 757 | { |
no test coverage detected