36 lines
1.2 KiB
C#
36 lines
1.2 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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(149, "MovieClipUser", 8)]
|
|
public struct MovieClipUser {
|
|
[DNAFieldAttribute(0, "int", "framenr", "int", 4, false, 0)]
|
|
public int framenr;
|
|
[DNAFieldAttribute(1, "short", "render_size", "short", 2, false, 4)]
|
|
public short render_size;
|
|
[DNAFieldAttribute(2, "short", "render_flag", "short", 2, false, 6)]
|
|
public short render_flag;
|
|
public MovieClipUser() {
|
|
this.framenr = default;
|
|
this.render_size = default;
|
|
this.render_flag = default;
|
|
}
|
|
public MovieClipUser(int framenr, short render_size, short render_flag) {
|
|
this.framenr = framenr;
|
|
this.render_size = render_size;
|
|
this.render_flag = render_flag;
|
|
}
|
|
}
|
|
}
|