| 35 | }; |
| 36 | |
| 37 | class FPythonSlateCommands : public TCommands<FPythonSlateCommands> |
| 38 | { |
| 39 | public: |
| 40 | |
| 41 | FPythonSlateCommands() |
| 42 | : TCommands<FPythonSlateCommands>(TEXT("UnrealEnginePython"), NSLOCTEXT("Contexts" ,"UnrealEnginePython", "UnrealEnginePython"), NAME_None, "EditorStyle") |
| 43 | { |
| 44 | } |
| 45 | |
| 46 | // TCommands<> interface |
| 47 | virtual void RegisterCommands() override; |
| 48 | |
| 49 | static void ApplyPythonExtenders(); |
| 50 | }; |
| 51 | |
| 52 | PyObject *py_unreal_engine_add_menu_extension(PyObject *, PyObject *); |
| 53 |
nothing calls this directly
no outgoing calls
no test coverage detected