> For the complete documentation index, see [llms.txt](https://reflective-roommanager.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://reflective-roommanager.gitbook.io/docs/user-manual/network/room/loader/none-scene-room-loader.md).

# None Scene Room Loader

This class represents a room loader that does not load scenes. This can be used when scenes do not need to be loaded in a particular context.

### Methods

1. ```csharp
   LoadRoom(Room room, RoomInfo roomInfo, Action onLoaded)
   ```
   * This method is used to load the room. Here, since the `NoneSceneRoomLoader` class does not load any scenes, the `onLoaded` method is called when the loading process does not occur. This is used to simulate loading.
2. ```csharp
   UnLoadRoom(Room room)
   ```
   * This method is used to unload the specified room. `NoneSceneRoomLoader` class is an empty method because it does not perform any action here.
