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_sound_location_message.h')
-rw-r--r--Source/Online/Message/audio_play_sound_location_message.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/Source/Online/Message/audio_play_sound_location_message.h b/Source/Online/Message/audio_play_sound_location_message.h
index 071d6e08..64e4dffb 100644
--- a/Source/Online/Message/audio_play_sound_location_message.h
+++ b/Source/Online/Message/audio_play_sound_location_message.h
@@ -1,7 +1,7 @@
//-----------------------------------------------------------------------------
// Name: audio_play_sound_location_message.h
// Developer: Wolfire Games LLC
-// Description:
+// Description:
// License: Read below
//-----------------------------------------------------------------------------
//
@@ -25,18 +25,18 @@
#include "online_message_base.h"
namespace OnlineMessages {
- class AudioPlaySoundLocationMessage : public OnlineMessageBase {
- private:
- std::string path;
- vec3 pos;
+class AudioPlaySoundLocationMessage : public OnlineMessageBase {
+ private:
+ std::string path;
+ vec3 pos;
- public:
- AudioPlaySoundLocationMessage(const std::string& path, vec3 pos);
+ public:
+ AudioPlaySoundLocationMessage(const std::string& path, vec3 pos);
- 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