Files
BlenderSharp/BlendFile/DNA/NodeMenuSwitch.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

26 lines
808 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 NodeMenuSwitch {
public NodeEnumDefinition enum_definition;
public byte data_type;
public char[] _pad = new System.Char[7];
public NodeMenuSwitch(NodeEnumDefinition enum_definition, byte data_type, char[] _pad) {
this.enum_definition = enum_definition;
this.data_type = data_type;
this._pad = _pad;
}
}
}