comment changes
This commit is contained in:
parent
43270494d1
commit
5121be6abd
|
|
@ -1,4 +1,4 @@
|
|||
// Filename: audio_manager.I
|
||||
// Filename: audioManager.I
|
||||
// Created by: skyler (June 6, 2001)
|
||||
// Prior system by: cary
|
||||
//
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Filename: audio_manager.h
|
||||
// Filename: audioManager.h
|
||||
// Created by: skyler (June 6, 2001)
|
||||
// Prior system by: cary
|
||||
//
|
||||
|
|
@ -23,8 +23,6 @@
|
|||
#include "config_audio.h"
|
||||
#include "audioSound.h"
|
||||
|
||||
class AudioManagerInternal;
|
||||
|
||||
class EXPCL_PANDA AudioManager {
|
||||
PUBLISHED:
|
||||
// Create an AudioManager for each category of sounds you have.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Filename: audio_sound.cxx
|
||||
// Filename: audioSound.cxx
|
||||
// Created by: skyler (June 6, 2001)
|
||||
// Prior system by: cary
|
||||
//
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Filename: audio_sound.h
|
||||
// Filename: audioSound.h
|
||||
// Created by: skyler (June 6, 2001)
|
||||
// Prior system by: cary
|
||||
//
|
||||
|
|
@ -93,11 +93,6 @@ public:
|
|||
return _type_handle;
|
||||
}
|
||||
static void init_type() {
|
||||
/*
|
||||
TypedObject::init_type();
|
||||
register_type(_type_handle, "AudioSound",
|
||||
TypedObject::get_class_type());
|
||||
*/
|
||||
TypedReferenceCount::init_type();
|
||||
register_type(_type_handle, "AudioSound",
|
||||
TypedReferenceCount::get_class_type());
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Filename: audio_manager.cxx
|
||||
// Filename: milesAudioManager.cxx
|
||||
// Created by: skyler (June 6, 2001)
|
||||
// Prior system by: cary
|
||||
//
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Filename: MilesAudioManager.h
|
||||
// Filename: milesAudioManager.h
|
||||
// Created by: skyler (June 6, 2001)
|
||||
// Prior system by: cary
|
||||
//
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Filename: milesAudioSound.cxx
|
||||
// Filename: milesAudioSound.I
|
||||
// Created by: skyler (June 6, 2001)
|
||||
// Prior system by: cary
|
||||
//
|
||||
|
|
|
|||
|
|
@ -222,16 +222,6 @@ AudioSound::SoundStatus MilesAudioSound::status() const {
|
|||
return AudioSound::BAD;
|
||||
}
|
||||
}
|
||||
/*
|
||||
bool MilesAudioSound::operator==(const AudioSound& other) const {
|
||||
// These sounds only match if they are the same instance (address):
|
||||
return ((int)this) == ((int)&other);
|
||||
}
|
||||
|
||||
bool MilesAudioSound::operator!=(const AudioSound& other) const {
|
||||
return ! (*this == other);
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
#endif //]
|
||||
|
|
|
|||
Loading…
Reference in New Issue