mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 00:06:44 -04:00
*** empty log message ***
This commit is contained in:
parent
9c897dbc90
commit
93dabec7bb
@ -15,6 +15,16 @@ mutex AudioManager::_manager_mutex;
|
|||||||
bool* AudioManager::_quit = (bool*)0L;
|
bool* AudioManager::_quit = (bool*)0L;
|
||||||
thread* AudioManager::_spawned = (thread*)0L;
|
thread* AudioManager::_spawned = (thread*)0L;
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function: AudioManager::destructor
|
||||||
|
// Access: Public
|
||||||
|
// Description: delete the AudioManager singleton
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
AudioManager::~AudioManager(void) {
|
||||||
|
shutdown();
|
||||||
|
_global_ptr = (AudioManager*)0L;
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function: AudioManager::set_update_func
|
// Function: AudioManager::set_update_func
|
||||||
// Access: Public, Static
|
// Access: Public, Static
|
||||||
|
@ -36,6 +36,8 @@ private:
|
|||||||
static bool* _quit;
|
static bool* _quit;
|
||||||
static thread* _spawned;
|
static thread* _spawned;
|
||||||
public:
|
public:
|
||||||
|
virtual ~AudioManager(void);
|
||||||
|
|
||||||
static void set_update_func(UpdateFunc*);
|
static void set_update_func(UpdateFunc*);
|
||||||
static void set_shutdown_func(ShutdownFunc*);
|
static void set_shutdown_func(ShutdownFunc*);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user