mirror of
https://github.com/godotengine/godot.git
synced 2024-12-21 10:25:24 +08:00
15451479e5
They provide an interface to implement PacketPeer, StreamPeer, and NetworkedMultiplayerPeer via GDNative.
13 lines
254 B
Python
13 lines
254 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import methods
|
|
|
|
Import('env')
|
|
Import('env_modules')
|
|
|
|
env_net_gdnative = env_modules.Clone()
|
|
|
|
env_net_gdnative.Append(CPPPATH=['#modules/gdnative/include/'])
|
|
env_net_gdnative.add_source_files(env.modules_sources, '*.cpp')
|