mirror of
https://github.com/lubosz/overte.git
synced 2025-04-26 22:56:02 +02:00
Add missing dependency
This commit is contained in:
parent
89a5da80e0
commit
8b922ad7cc
1 changed files with 3 additions and 0 deletions
|
@ -57,6 +57,7 @@
|
|||
#include "RecordingScriptingInterface.h"
|
||||
#include "AbstractAudioInterface.h"
|
||||
#include "AgentScriptingInterface.h"
|
||||
#include "ResourceRequestObserver.h"
|
||||
|
||||
static const int RECEIVED_AUDIO_STREAM_CAPACITY_FRAMES = 10;
|
||||
|
||||
|
@ -99,6 +100,8 @@ Agent::Agent(ReceivedMessage& message) :
|
|||
DependencyManager::set<RecordingScriptingInterface>();
|
||||
DependencyManager::set<UsersScriptingInterface>();
|
||||
|
||||
DependencyManager::set<ResourceRequestObserver>();
|
||||
|
||||
// Needed to ensure the creation of the DebugDraw instance on the main thread
|
||||
DebugDraw::getInstance();
|
||||
|
||||
|
|
Loading…
Reference in a new issue