Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Online/Message/audio_play_group_priority_message.h')
-rw-r--r--Source/Online/Message/audio_play_group_priority_message.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/Source/Online/Message/audio_play_group_priority_message.h b/Source/Online/Message/audio_play_group_priority_message.h
index 5f6edaa6..eaa45733 100644
--- a/Source/Online/Message/audio_play_group_priority_message.h
+++ b/Source/Online/Message/audio_play_group_priority_message.h
@@ -1,7 +1,7 @@
//-----------------------------------------------------------------------------
// Name: audio_play_group_priority_message.h
// Developer: Wolfire Games LLC
-// Description:
+// Description:
// License: Read below
//-----------------------------------------------------------------------------
//
@@ -25,19 +25,19 @@
#include "online_message_base.h"
namespace OnlineMessages {
- class AudioPlayGroupPriorityMessage : public OnlineMessageBase {
- private:
- std::string path;
- vec3 pos;
- int32_t priority;
+class AudioPlayGroupPriorityMessage : public OnlineMessageBase {
+ private:
+ std::string path;
+ vec3 pos;
+ int32_t priority;
- public:
- AudioPlayGroupPriorityMessage(const std::string& path, vec3 pos, int priority);
+ public:
+ AudioPlayGroupPriorityMessage(const std::string& path, vec3 pos, int priority);
- static binn* Serialize(void* object);
- static void Deserialize(void* object, binn* source);
- static void Execute(const OnlineMessageRef& ref, void* object, PeerID from);
- static void* Construct(void* mem);
- static void Destroy(void* object);
- };
-}
+ static binn* Serialize(void* object);
+ static void Deserialize(void* object, binn* source);
+ static void Execute(const OnlineMessageRef& ref, void* object, PeerID from);
+ static void* Construct(void* mem);
+ static void Destroy(void* object);
+};
+} // namespace OnlineMessages