From 848a03263a9f3407ff72196b5b519b3b5ab78d33 Mon Sep 17 00:00:00 2001 From: slayercio Date: Tue, 18 Nov 2025 19:55:56 +0100 Subject: [PATCH] feat: added native dispatch function to manager --- src/detail/fxn.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/detail/fxn.hpp b/src/detail/fxn.hpp index f52b7c4..42bec69 100644 --- a/src/detail/fxn.hpp +++ b/src/detail/fxn.hpp @@ -20,6 +20,8 @@ namespace fxn static FxnManager& GetInstance(); static void Destroy(); + static void DispatchNative(fxn::NativeContext* context, NativeHash hash); + public: void Initialize(); void Shutdown();