30 lines
1019 B
C#
30 lines
1019 B
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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public struct bUserMenuItem_Prop {
|
|
public bUserMenuItem item;
|
|
public char[] context_data_path = new System.Char[256];
|
|
public char[] prop_id = new System.Char[64];
|
|
public int prop_index;
|
|
public char[] _pad0 = new System.Char[4];
|
|
public bUserMenuItem_Prop(bUserMenuItem item, char[] context_data_path, char[] prop_id, int prop_index, char[] _pad0) {
|
|
this.item = item;
|
|
this.context_data_path = context_data_path;
|
|
this.prop_id = prop_id;
|
|
this.prop_index = prop_index;
|
|
this._pad0 = _pad0;
|
|
}
|
|
}
|
|
}
|