Skip to content

Instantly share code, notes, and snippets.

@saitocastel1900
Created October 24, 2022 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saitocastel1900/a5e0455031ab07caae9426ae1eb71c26 to your computer and use it in GitHub Desktop.
Save saitocastel1900/a5e0455031ab07caae9426ae1eb71c26 to your computer and use it in GitHub Desktop.
public class Singleton1:MonoBehaviour
{
private static Singleton1 _instance = new Singleton1();
public static Singleton1 Instance => _instance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment