3 Commits

Author SHA1 Message Date
Kolyah35
2c132d5bc7 cache ndk to avoid downloading and extracting :v 2026-03-17 21:59:19 +03:00
Kolyah35
e0a39fb6c1 Merge remote-tracking branch 'refs/remotes/origin/main' 2026-03-17 21:59:16 +03:00
Kolyah35
ccac464750 just a comment 2026-03-17 21:53:15 +03:00
2 changed files with 13 additions and 2 deletions

View File

@@ -13,14 +13,23 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Android NDK r14b
id: ndk-cache
uses: actions/cache@v4
with:
path: C:\android-ndk-r14b
key: android-ndk-r14b
- name: Download Android NDK r14b
if: steps.ndk-cache.outputs.cache-hit != 'true'
shell: powershell
run: |
Invoke-WebRequest `
-Uri "http://dl.google.com/android/repository/android-ndk-r14b-windows-x86_64.zip" `
-OutFile "ndk.zip"
- name: Extract NDK
- name: Extract Android NDK
if: steps.ndk-cache.outputs.cache-hit != 'true'
shell: powershell
run: |
Expand-Archive ndk.zip C:\

View File

@@ -66,7 +66,9 @@ public:
void displayGameMessage(const std::string& message);
private:
/**
* @brief Send packet to all players
*/
void redistributePacket(Packet* packet, const RakNet::RakNetGUID& fromPlayer);
Player* getPlayer(const RakNet::RakNetGUID& source);