| 5 | |
| 6 | UCLASS() |
| 7 | class UPythonFunction : public UFunction |
| 8 | { |
| 9 | GENERATED_BODY() |
| 10 | |
| 11 | public: |
| 12 | ~UPythonFunction(); |
| 13 | void SetPyCallable(PyObject *callable); |
| 14 | |
| 15 | DECLARE_FUNCTION(CallPythonCallable); |
| 16 | |
| 17 | PyObject *py_callable; |
| 18 | }; |
| 19 |
nothing calls this directly
no outgoing calls
no test coverage detected