예제 #1
0
 static public T GetGameSystem <T>()
     where T : CGameSystem
 {
     if (instance == null)
     {
         return(null);
     }
     else
     {
         return(instance._GetGameSystem <T>());
     }
 }
예제 #2
0
 static public T GetGameSystem <T>()
     where T : CGameSystem
 {
     return(Instance == null ? null : Instance._GetGameSystem <T>());
 }