Audio.Sfx.Sfx C# (CSharp) Method

Sfx() static private method

static private Sfx ( )
            static Sfx()
            {
                var vanillaDefs = VanillaDict.Select(kvp => new KeyValuePair<ObjectRef, SfxEntry>(new ObjectRef(kvp.Key), kvp.Value));
                var modDefs = ModData.Mods.Select(kvp => GetModDefs(kvp)).Flatten();

                Entries = new DefIndexer<SfxEntry>(vanillaDefs.Concat(modDefs), helper.ByObjRef, ById);
            }