SimShift.MapTool.Ets2Mapper.LookupPrefab C# (CSharp) 메소드

LookupPrefab() 공개 메소드

public LookupPrefab ( int prefabId ) : Ets2Prefab
prefabId int
리턴 Ets2Prefab
        public Ets2Prefab LookupPrefab(int prefabId)
        {
            if (PrefabLookup.ContainsKey(prefabId))
                return PrefabLookup[prefabId];
            else
                return null;
        }