Files
BlenderSharp/BlendFile/DNA/ScrAreaMap.cs
2025-03-04 18:48:04 +01:00

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(848, "ScrAreaMap", 48)]
public class ScrAreaMap {
[DNAFieldAttribute(16, "ListBase", 0, "vertbase", "ListBase", false, 0)]
public ListBase vertbase;
[DNAFieldAttribute(16, "ListBase", 1, "edgebase", "ListBase", false, 16)]
public ListBase edgebase;
[DNAFieldAttribute(16, "ListBase", 2, "areabase", "ListBase", false, 32)]
public ListBase areabase;
public ScrAreaMap() {
this.vertbase = default;
this.edgebase = default;
this.areabase = default;
}
public ScrAreaMap(ListBase vertbase, ListBase edgebase, ListBase areabase) {
this.vertbase = vertbase;
this.edgebase = edgebase;
this.areabase = areabase;
}
}
}