Update for NWN:EE 37-14

Update for NWN:EE 37-14.  Updated NWNxEE.  Full compile.  Updated release archive.
This commit is contained in:
Jaysyn904
2025-01-21 07:45:16 -05:00
parent 9bbad998cd
commit 09e58d82a4
240 changed files with 25040 additions and 1117 deletions

View File

@@ -0,0 +1,22 @@
/// @ingroup redis
/// @brief Interface to Redis PUBSUB
/// @{
/// @file nwnx_redis_ps.nss
/// A redis PUBSUB message
struct NWNX_Redis_PubSubMessageData {
string channel; ///< The channel
string message; ///< The message
};
/// @brief Get a PUBSUB message
/// @return A NWNX_Redis_PubSubMessageData struct.
struct NWNX_Redis_PubSubMessageData NWNX_Redis_GetPubSubMessageData()
{
struct NWNX_Redis_PubSubMessageData ret;
NWNXCall("NWNX_Redis", "GetPubSubData");
ret.message = NWNXPopString();
ret.channel = NWNXPopString();
return ret;
}
/// @}