31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class GreasePencilMirrorModifierData {
|
|
public ModifierData modifier;
|
|
public GreasePencilModifierInfluenceData influence;
|
|
public Object ptr_object;
|
|
public int flag;
|
|
public char[] _pad = new System.Char[4];
|
|
public GreasePencilMirrorModifierData(ModifierData modifier, GreasePencilModifierInfluenceData influence, Object ptr_object, int flag, char[] _pad) {
|
|
this.modifier = modifier;
|
|
this.influence = influence;
|
|
this.ptr_object = ptr_object;
|
|
this.flag = flag;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|