Last active
September 25, 2020 12:54
-
-
Save Datoh/a3ca0705b507e5af20ada89429f39660 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func remote_call(node, method, varargs): | |
if solo: | |
node.call(method, varargs) | |
else: | |
node.rpc(method,varargs) | |
func test(): | |
remote_call(self, "foo", 10, 20) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment