added uint64_t compat file

This commit is contained in:
Samuele Lorefice
2025-01-22 17:40:14 +01:00
parent 3bcbde6bb2
commit 2d6159e331
939 changed files with 28 additions and 954 deletions

View File

@@ -10,18 +10,17 @@
using BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
namespace BlendFile.DNA {
public struct bUUID {
public int time_low;
public @ushort time_mid;
public @ushort time_hi_and_version;
public ushort time_mid;
public ushort time_hi_and_version;
public uchar clock_seq_hi_and_reserved;
public uchar clock_seq_low;
public uchar[] node = new uchar[6];
public bUUID(int time_low, @ushort time_mid, @ushort time_hi_and_version, uchar clock_seq_hi_and_reserved, uchar clock_seq_low, uchar[] node) {
public bUUID(int time_low, ushort time_mid, ushort time_hi_and_version, uchar clock_seq_hi_and_reserved, uchar clock_seq_low, uchar[] node) {
this.time_low = time_low;
this.time_mid = time_mid;
this.time_hi_and_version = time_hi_and_version;