示例#1
0
 public RadiationTracker getRT(Vessel v)
 {
     if (v == null)
     {
         return(null);
     }
     if (!mVessels.ContainsKey(v))
     {
         mVessels[v] = new RadiationTracker(v);
     }
     return(mVessels[v]);
 }
示例#2
0
文件: Core.cs 项目: kjoenth/kpu_mod
 public RadiationTracker getRT(Vessel v)
 {
     if (v == null)
         return null;
     if (!mVessels.ContainsKey(v))
         mVessels[v] = new RadiationTracker(v);
     return mVessels[v];
 }