mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-30 19:12:15 +00:00
21 lines
771 B
C#
21 lines
771 B
C#
using System.Collections.Generic;
|
|
using Raindrop.Presenters;
|
|
using Raindrop.UI.LoadingScreen;
|
|
using Raindrop.UI.Views;
|
|
using UnityEngine;
|
|
|
|
namespace Raindrop.Services.Bootstrap
|
|
{
|
|
//this class is in the main scene, where you can give it references to monobehaviors in order to inject them.
|
|
// of course, runtime- created monobehaviors cannot be injected this way, so you will need to find some other way for those.
|
|
public class References : Singleton<References>
|
|
{
|
|
[SerializeField] public ModalsManager mm;
|
|
[SerializeField] public ScreenStackManager sm;
|
|
[SerializeField] public LoadingView ll;
|
|
|
|
[SerializeField] public ChatPresenter chatPresenter;
|
|
[SerializeField] public MapUIView mapUI;
|
|
|
|
}
|
|
} |