LSLib.Granny.GR2.WritableSection.AddMixedMarshalling C# (CSharp) Method

AddMixedMarshalling() private method

private AddMixedMarshalling ( object o, UInt32 count, StructDefinition type ) : void
o object
count System.UInt32
type StructDefinition
return void
        internal void AddMixedMarshalling(object o, UInt32 count, StructDefinition type)
        {
            var marshal = new MixedMarshallingData();
            marshal.Obj = o;
            marshal.Count = count;
            marshal.Type = type;
            MixedMarshalling.Add(marshal);
        }