Gamma Age module files

Added internal Gamma Age module files.
This commit is contained in:
Jaysyn904
2021-07-14 16:40:26 -04:00
parent c6517c8942
commit ac0d96bd74
877 changed files with 53029 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/// @ingroup redis
/// @brief Script to handle PubSub event
/// @{
/// @file on_pubsub.nss
#include "nwnx_redis_ps"
void main()
{
struct NWNX_Redis_PubSubMessageData data = NWNX_Redis_GetPubSubMessageData();
WriteTimestampedLogEntry("Pubsub Event: channel=" + data.channel +
" message=" + data.message);
}
/// @}