aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/scripts/vscripts/sh_remote_functions_mp_custom.gnut
diff options
context:
space:
mode:
Diffstat (limited to 'Northstar.CustomServers/scripts/vscripts/sh_remote_functions_mp_custom.gnut')
-rw-r--r--Northstar.CustomServers/scripts/vscripts/sh_remote_functions_mp_custom.gnut20
1 files changed, 0 insertions, 20 deletions
diff --git a/Northstar.CustomServers/scripts/vscripts/sh_remote_functions_mp_custom.gnut b/Northstar.CustomServers/scripts/vscripts/sh_remote_functions_mp_custom.gnut
deleted file mode 100644
index c1e49e765..000000000
--- a/Northstar.CustomServers/scripts/vscripts/sh_remote_functions_mp_custom.gnut
+++ /dev/null
@@ -1,20 +0,0 @@
-untyped
-global function InitCustomNetworkVars
-global function AddCallback_OnRegisteringCustomNetworkVars
-
-struct {
- array<void functionref()> onRegisteringCustomNetworkVarsCallbacks
-} file
-
-void function InitCustomNetworkVars()
-{
- print( "InitCustomNetworkVars" )
-
- foreach ( void functionref() callback in file.onRegisteringCustomNetworkVarsCallbacks )
- callback()
-}
-
-void function AddCallback_OnRegisteringCustomNetworkVars( void functionref() callback )
-{
- file.onRegisteringCustomNetworkVarsCallbacks.append( callback )
-} \ No newline at end of file