I\'m new to Unity and am trying to write some Unity logic which initialises and register/resolves a singleton instance of the Email object so that it can be used across seve
You can, for example, use this code:
public class example : MonoBehaviour { public static example instance; public void Start() { (!instance) instance = this; } }