mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
removing inlines - not allowed for unique_ptr
This commit is contained in:
parent
c194c236f1
commit
fa3097225b
2 changed files with 11 additions and 3 deletions
|
@ -136,4 +136,12 @@ void OctreePacketProcessor::startEntitySequence() {
|
|||
|
||||
bool OctreePacketProcessor::isLoadSequenceComplete() const {
|
||||
return _safeLanding->isLoadSequenceComplete();
|
||||
}
|
||||
}
|
||||
|
||||
bool OctreePacketProcessor::isEntitiesRenderReady() const {
|
||||
return _safeLanding->entitiesRenderReady();
|
||||
}
|
||||
|
||||
float OctreePacketProcessor::domainLoadingProgress() {
|
||||
return _safeLanding->loadingProgressPercentage();
|
||||
}
|
||||
|
|
|
@ -27,8 +27,8 @@ public:
|
|||
|
||||
void startEntitySequence();
|
||||
bool isLoadSequenceComplete() const;
|
||||
bool isEntitiesRenderReady() const { return _safeLanding->entitiesRenderReady(); }
|
||||
float domainLoadingProgress() { return _safeLanding->loadingProgressPercentage(); }
|
||||
bool isEntitiesRenderReady() const;
|
||||
float domainLoadingProgress();
|
||||
|
||||
signals:
|
||||
void packetVersionMismatch();
|
||||
|
|
Loading…
Reference in a new issue