| | 1 | | using UnityEngine; |
| | 2 | |
|
| | 3 | | namespace DCL |
| | 4 | | { |
| | 5 | | public class DummyMessageHandler : IMessageProcessHandler |
| | 6 | | { |
| 0 | 7 | | public void LoadParcelScenesExecute(string scenePayload) { } |
| | 8 | |
|
| | 9 | | public bool ProcessMessage(QueuedSceneMessage_Scene msgObject, out CustomYieldInstruction yieldInstruction) |
| | 10 | | { |
| 0 | 11 | | yieldInstruction = null; |
| 0 | 12 | | return true; |
| | 13 | | } |
| | 14 | |
|
| 0 | 15 | | public void UnloadAllScenes(bool includePersistent = false) { } |
| | 16 | |
|
| 0 | 17 | | public void UnloadParcelSceneExecute(string sceneId) { } |
| | 18 | |
|
| 0 | 19 | | public void UpdateParcelScenesExecute(string sceneId) { } |
| | 20 | | } |
| | 21 | | } |