added uint64_t compat file
This commit is contained in:
9
BlendFile/CompatTypes/uint64_t.cs
Normal file
9
BlendFile/CompatTypes/uint64_t.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace BlendFile.CompatTypes;
|
||||
|
||||
public readonly struct uint64_t {
|
||||
public UInt64 Value { get; }
|
||||
|
||||
public uint64_t(ulong value) {
|
||||
Value = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user