mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 09:48:20 +00:00
const return oversight (#1532)
This commit is contained in:
parent
06e7d57e0d
commit
bcfaa6c7fe
@ -50,8 +50,8 @@ public:
|
|||||||
bool GetSleeping() const { return m_Sleeping; }
|
bool GetSleeping() const { return m_Sleeping; }
|
||||||
void SetSleeping(bool value) { m_Sleeping = value; }
|
void SetSleeping(bool value) { m_Sleeping = value; }
|
||||||
|
|
||||||
const std::span<const LWOOBJID> GetNewObjects() const { return m_NewObjects; }
|
std::span<const LWOOBJID> GetNewObjects() const { return m_NewObjects; }
|
||||||
const std::span<const LWOOBJID> GetRemovedObjects() const { return m_RemovedObjects; }
|
std::span<const LWOOBJID> GetRemovedObjects() const { return m_RemovedObjects; }
|
||||||
const std::unordered_set<LWOOBJID>& GetCurrentlyCollidingObjects() const { return m_CurrentlyCollidingObjects; }
|
const std::unordered_set<LWOOBJID>& GetCurrentlyCollidingObjects() const { return m_CurrentlyCollidingObjects; }
|
||||||
|
|
||||||
void PreUpdate() { m_NewObjects.clear(); m_RemovedObjects.clear(); }
|
void PreUpdate() { m_NewObjects.clear(); m_RemovedObjects.clear(); }
|
||||||
|
Loading…
Reference in New Issue
Block a user