summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index a49d1214b..13122dd61 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -97,6 +97,10 @@ namespace Core::HID {
97class HIDCore; 97class HIDCore;
98} 98}
99 99
100namespace Network {
101class RoomNetwork;
102}
103
100namespace Core { 104namespace Core {
101 105
102class ARM_Interface; 106class ARM_Interface;
@@ -379,6 +383,12 @@ public:
379 [[nodiscard]] Core::Debugger& GetDebugger(); 383 [[nodiscard]] Core::Debugger& GetDebugger();
380 [[nodiscard]] const Core::Debugger& GetDebugger() const; 384 [[nodiscard]] const Core::Debugger& GetDebugger() const;
381 385
386 /// Gets a mutable reference to the Room Network.
387 [[nodiscard]] Network::RoomNetwork& GetRoomNetwork();
388
389 /// Gets an immutable reference to the Room Network.
390 [[nodiscard]] const Network::RoomNetwork& GetRoomNetwork() const;
391
382 void SetExitLock(bool locked); 392 void SetExitLock(bool locked);
383 [[nodiscard]] bool GetExitLock() const; 393 [[nodiscard]] bool GetExitLock() const;
384 394