]> git.tdb.fi Git - libs/al.git/blobdiff - source/soundscape.h
Bump version for release
[libs/al.git] / source / soundscape.h
index 3eca7eafcf265fd484f681b9c43a78aa5ad1eb0f..163818f159941b0ed7746507116e41706a8eb6ea 100644 (file)
@@ -2,7 +2,7 @@
 
 This file is part of libmspal
 Copyright © 2008 Mikko Rasa, Mikkosoft Productions
-Diestributed under the LGPL
+Distributed under the LGPL
 */
 
 #ifndef MSP_AL_SOUNDSCAPE_H_
@@ -16,6 +16,9 @@ namespace AL {
 class Buffer;
 class Source;
 
+/**
+A SoundScape offers an easy way to play positional sound effects.
+*/
 class SoundScape
 {
 private:
@@ -24,8 +27,8 @@ private:
 public:
        ~SoundScape();
 
-       void add_source(Source *);
-       Source *play(const Buffer &, float, float, float);
+       void add_source(Source &);
+       Source &play(const Buffer &, float, float, float);
        void tick();
 };