public static bool TryCreateFromBinary(
            MutagenFrame frame,
            out MagicEffectVampireArchetype item,
            RecordTypeConverter?recordTypeConverter = null)
        {
            var startPos = frame.Position;

            item = CreateFromBinary(frame, recordTypeConverter);
            return(startPos != frame.Position);
        }
Esempio n. 2
0
        public static bool TryCreateFromBinary(
            MutagenFrame frame,
            out MagicEffectVampireArchetype item,
            TypedParseParams?translationParams = null)
        {
            var startPos = frame.Position;

            item = CreateFromBinary(
                frame: frame,
                translationParams: translationParams);
            return(startPos != frame.Position);
        }
        public new static MagicEffectVampireArchetype CreateFromBinary(
            MutagenFrame frame,
            RecordTypeConverter?recordTypeConverter = null)
        {
            var ret = new MagicEffectVampireArchetype();

            ((MagicEffectVampireArchetypeSetterCommon)((IMagicEffectVampireArchetypeGetter)ret).CommonSetterInstance() !).CopyInFromBinary(
                item: ret,
                frame: frame,
                recordTypeConverter: recordTypeConverter);
            return(ret);
        }
Esempio n. 4
0
        public new static MagicEffectVampireArchetype CreateFromBinary(
            MutagenFrame frame,
            TypedParseParams?translationParams = null)
        {
            var ret = new MagicEffectVampireArchetype();

            ((MagicEffectVampireArchetypeSetterCommon)((IMagicEffectVampireArchetypeGetter)ret).CommonSetterInstance() !).CopyInFromBinary(
                item: ret,
                frame: frame,
                translationParams: translationParams);
            return(ret);
        }