예제 #1
0
파일: CompileCache.cs 프로젝트: silky/KOS
 public static CompileCache GetInstance()
 {
     if (_instance == null)
     {
         _instance = new CompileCache();
     }
     return(_instance);
 }
예제 #2
0
파일: Script.cs 프로젝트: kevin-ye/KOS
 public Script()
 {
     Cache = CompileCache.GetInstance();
 }
예제 #3
0
 public static CompileCache GetInstance()
 {
     return instance ?? (instance = new CompileCache());
 }
예제 #4
0
파일: Script.cs 프로젝트: ElasticRaven/KOS
 public Script()
 {
     _cache = CompileCache.GetInstance();
 }
예제 #5
0
파일: CompileCache.cs 프로젝트: WazWaz/KOS
 public static CompileCache GetInstance()
 {
     if (_instance == null) _instance = new CompileCache();
     return _instance;
 }
예제 #6
0
 protected Script()
 {
     Cache = CompileCache.GetInstance();
 }
예제 #7
0
 public static CompileCache GetInstance()
 {
     return(instance ?? (instance = new CompileCache()));
 }