42 lines
1.8 KiB
C#
42 lines
1.8 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 {
|
|
|
|
public class MovieTrackingDopesheetChannel {
|
|
public MovieTrackingDopesheetChannel ptr_next;
|
|
public MovieTrackingDopesheetChannel ptr_prev;
|
|
public MovieTrackingTrack ptr_track;
|
|
public char[] _pad = new System.Char[4];
|
|
public char[] name = new System.Char[64];
|
|
public int tot_segment;
|
|
public int ptr_segments;
|
|
public int max_segment;
|
|
public int total_frames;
|
|
public int first_not_disabled_marker_framenr;
|
|
public int last_not_disabled_marker_framenr;
|
|
public MovieTrackingDopesheetChannel(MovieTrackingDopesheetChannel ptr_next, MovieTrackingDopesheetChannel ptr_prev, MovieTrackingTrack ptr_track, char[] _pad, char[] name, int tot_segment, int ptr_segments, int max_segment, int total_frames, int first_not_disabled_marker_framenr, int last_not_disabled_marker_framenr) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.ptr_track = ptr_track;
|
|
this._pad = _pad;
|
|
this.name = name;
|
|
this.tot_segment = tot_segment;
|
|
this.ptr_segments = ptr_segments;
|
|
this.max_segment = max_segment;
|
|
this.total_frames = total_frames;
|
|
this.first_not_disabled_marker_framenr = first_not_disabled_marker_framenr;
|
|
this.last_not_disabled_marker_framenr = last_not_disabled_marker_framenr;
|
|
}
|
|
}
|
|
}
|