├── .clang-format ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── generate_documents_and_recompile │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── builds.yml │ └── runner.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── README.zh.md ├── SConstruct ├── demo ├── .gitattributes ├── .gitignore ├── addons │ └── gd-eos │ │ ├── bin │ │ └── macos │ │ │ ├── libgdeos.macos.template_debug.framework │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── libgdeos.macos.template_release.framework │ │ │ └── Resources │ │ │ └── Info.plist │ │ ├── doc │ │ ├── .gdignore │ │ └── logo.png │ │ └── gd-eos.gdextension ├── icon.png ├── project.godot └── scenes │ └── main │ ├── main.gd │ ├── main.tscn │ ├── player.gd │ ├── player.tscn │ └── players.gd ├── gd_eos ├── include │ ├── core │ │ ├── eos_anticheatcommon_client.h │ │ ├── eos_data_class.h │ │ ├── eos_notification.h │ │ ├── eos_packed_result.h │ │ ├── file_transfer.inl │ │ └── utils.h │ ├── editor │ │ └── eos_editor_plugin.h │ ├── eos_multiplayer_peer.h │ ├── eos_packet_peer_mediator.h │ └── register_types.h └── src │ ├── core │ ├── eos_data_class.cpp │ ├── eos_notification.cpp │ └── utils.cpp │ ├── editor │ └── eos_editor_plugin.cpp │ ├── eos_multiplayer_peer.cpp │ ├── eos_packet_peer_mediator.cpp │ └── register_types.cpp ├── misc └── copy_dir.py ├── thirdparty └── Paste the EOS C SDK here as eos-sdk ├── tools ├── binding_generator.py ├── gd_eos.py └── postprocess_ios.sh └── version /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/generate_documents_and_recompile/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.github/actions/generate_documents_and_recompile/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.github/workflows/builds.yml -------------------------------------------------------------------------------- /.github/workflows/runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.github/workflows/runner.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/README.zh.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/SConstruct -------------------------------------------------------------------------------- /demo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/.gitattributes -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/addons/gd-eos/bin/macos/libgdeos.macos.template_debug.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/addons/gd-eos/bin/macos/libgdeos.macos.template_debug.framework/Resources/Info.plist -------------------------------------------------------------------------------- /demo/addons/gd-eos/bin/macos/libgdeos.macos.template_release.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/addons/gd-eos/bin/macos/libgdeos.macos.template_release.framework/Resources/Info.plist -------------------------------------------------------------------------------- /demo/addons/gd-eos/doc/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/addons/gd-eos/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/addons/gd-eos/doc/logo.png -------------------------------------------------------------------------------- /demo/addons/gd-eos/gd-eos.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/addons/gd-eos/gd-eos.gdextension -------------------------------------------------------------------------------- /demo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/icon.png -------------------------------------------------------------------------------- /demo/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/project.godot -------------------------------------------------------------------------------- /demo/scenes/main/main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/scenes/main/main.gd -------------------------------------------------------------------------------- /demo/scenes/main/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/scenes/main/main.tscn -------------------------------------------------------------------------------- /demo/scenes/main/player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/scenes/main/player.gd -------------------------------------------------------------------------------- /demo/scenes/main/player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/scenes/main/player.tscn -------------------------------------------------------------------------------- /demo/scenes/main/players.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/demo/scenes/main/players.gd -------------------------------------------------------------------------------- /gd_eos/include/core/eos_anticheatcommon_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/core/eos_anticheatcommon_client.h -------------------------------------------------------------------------------- /gd_eos/include/core/eos_data_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/core/eos_data_class.h -------------------------------------------------------------------------------- /gd_eos/include/core/eos_notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/core/eos_notification.h -------------------------------------------------------------------------------- /gd_eos/include/core/eos_packed_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/core/eos_packed_result.h -------------------------------------------------------------------------------- /gd_eos/include/core/file_transfer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/core/file_transfer.inl -------------------------------------------------------------------------------- /gd_eos/include/core/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/core/utils.h -------------------------------------------------------------------------------- /gd_eos/include/editor/eos_editor_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/editor/eos_editor_plugin.h -------------------------------------------------------------------------------- /gd_eos/include/eos_multiplayer_peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/eos_multiplayer_peer.h -------------------------------------------------------------------------------- /gd_eos/include/eos_packet_peer_mediator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/eos_packet_peer_mediator.h -------------------------------------------------------------------------------- /gd_eos/include/register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/include/register_types.h -------------------------------------------------------------------------------- /gd_eos/src/core/eos_data_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/src/core/eos_data_class.cpp -------------------------------------------------------------------------------- /gd_eos/src/core/eos_notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/src/core/eos_notification.cpp -------------------------------------------------------------------------------- /gd_eos/src/core/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/src/core/utils.cpp -------------------------------------------------------------------------------- /gd_eos/src/editor/eos_editor_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/src/editor/eos_editor_plugin.cpp -------------------------------------------------------------------------------- /gd_eos/src/eos_multiplayer_peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/src/eos_multiplayer_peer.cpp -------------------------------------------------------------------------------- /gd_eos/src/eos_packet_peer_mediator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/src/eos_packet_peer_mediator.cpp -------------------------------------------------------------------------------- /gd_eos/src/register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/gd_eos/src/register_types.cpp -------------------------------------------------------------------------------- /misc/copy_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/misc/copy_dir.py -------------------------------------------------------------------------------- /thirdparty/Paste the EOS C SDK here as eos-sdk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/binding_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/tools/binding_generator.py -------------------------------------------------------------------------------- /tools/gd_eos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/tools/gd_eos.py -------------------------------------------------------------------------------- /tools/postprocess_ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daylily-Zeleen/GD-EOS/HEAD/tools/postprocess_ios.sh -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | v0.4.2-dev --------------------------------------------------------------------------------