Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
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;
}
}
}