40 lines
1.4 KiB
C#
40 lines
1.4 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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public struct UserDef_FileSpaceData {
|
|
public int display_type;
|
|
public int thumbnail_size;
|
|
public int sort_type;
|
|
public int details_flags;
|
|
public int flag;
|
|
public int _pad0;
|
|
public uint64_t filter_id;
|
|
public int temp_win_sizex;
|
|
public int temp_win_sizey;
|
|
public UserDef_FileSpaceData(int display_type, int thumbnail_size, int sort_type, int details_flags, int flag, int _pad0, uint64_t filter_id, int temp_win_sizex, int temp_win_sizey) {
|
|
this.display_type = display_type;
|
|
this.thumbnail_size = thumbnail_size;
|
|
this.sort_type = sort_type;
|
|
this.details_flags = details_flags;
|
|
this.flag = flag;
|
|
this._pad0 = _pad0;
|
|
this.filter_id = filter_id;
|
|
this.temp_win_sizex = temp_win_sizex;
|
|
this.temp_win_sizey = temp_win_sizey;
|
|
}
|
|
}
|
|
}
|