Advertisement
Eresor

Untitled

Oct 17th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. public class SingleInstance : MonoBehaviour
  2. {
  3.     public static SingleInstance Instance
  4.     {
  5.         get
  6.         {
  7.             return _instance != null ? _instance : (_instance = FindObjectOfType<SingleInstance>())
  8.         }
  9.     }
  10.  
  11.     private static SingleInstance _instance;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement