Documentation for the Unity C# Library
Loading...
Searching...
No Matches
PixoSingleton.cs
Go to the documentation of this file.
1using System;
2using UnityEngine;
3
4namespace PixoVR.Apex
5{
6 public class PixoSingleton<T> where T : class, new()
7 {
8 private readonly static T instance = new T();
9
10 public static T Instance
11 {
12 get
13 {
14 return instance;
15 }
16 }
17 }
18}
static readonly T instance