From f1f47c1291296dffd6d086e540b493ff6c8c600f Mon Sep 17 00:00:00 2001 From: HolterPhylo Date: Fri, 12 Apr 2024 11:23:47 -0400 Subject: [PATCH] Update for 14035264 --- .../GameComponents/GcCustomisationDescriptorGroupSet.cs | 6 ++++-- .../NMS/GameComponents/GcCustomisationDescriptorGroups.cs | 2 +- .../NMS/GameComponents/GcCustomisationTextureOption.cs | 8 +++----- .../NMS/GameComponents/GcCustomisationTextureOptions.cs | 2 +- libMBIN/Source/Version.cs | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/libMBIN/Source/NMS/GameComponents/GcCustomisationDescriptorGroupSet.cs b/libMBIN/Source/NMS/GameComponents/GcCustomisationDescriptorGroupSet.cs index d10836c87..b03c9cd6d 100644 --- a/libMBIN/Source/NMS/GameComponents/GcCustomisationDescriptorGroupSet.cs +++ b/libMBIN/Source/NMS/GameComponents/GcCustomisationDescriptorGroupSet.cs @@ -3,10 +3,12 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0x15F87A47037F31FA, NameHash = 0xDF74971999421442)] + [NMS(GUID = 0x1B0A9C15621B7CA5, NameHash = 0xDF74971999421442)] public class GcCustomisationDescriptorGroupSet : NMSTemplate { /* 0x00 */ public NMSString0x10 Id; - /* 0x10 */ public List DescriptorGroups; + /* 0x10 */ public bool GroupsAreMutuallyExclusive; + /* 0x18 */ public NMSString0x10 RequiresGroup; + /* 0x28 */ public List DescriptorGroups; } } diff --git a/libMBIN/Source/NMS/GameComponents/GcCustomisationDescriptorGroups.cs b/libMBIN/Source/NMS/GameComponents/GcCustomisationDescriptorGroups.cs index 76b704cf0..ad7fc1bb3 100644 --- a/libMBIN/Source/NMS/GameComponents/GcCustomisationDescriptorGroups.cs +++ b/libMBIN/Source/NMS/GameComponents/GcCustomisationDescriptorGroups.cs @@ -3,7 +3,7 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0xD8172BCDC8E4BED5, NameHash = 0xB84E1949AA2825A6)] + [NMS(GUID = 0x6D6F70A9B339FA4F, NameHash = 0xB84E1949AA2825A6)] public class GcCustomisationDescriptorGroups : NMSTemplate { /* 0x0 */ public List DescriptorGroupSets; diff --git a/libMBIN/Source/NMS/GameComponents/GcCustomisationTextureOption.cs b/libMBIN/Source/NMS/GameComponents/GcCustomisationTextureOption.cs index bac304980..1fa421460 100644 --- a/libMBIN/Source/NMS/GameComponents/GcCustomisationTextureOption.cs +++ b/libMBIN/Source/NMS/GameComponents/GcCustomisationTextureOption.cs @@ -1,16 +1,14 @@ -using libMBIN.NMS.Toolkit; using System.Collections.Generic; namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0x5BC4F83DDB5CF580, NameHash = 0xCDB7AC6D11C9DF03)] + [NMS(GUID = 0x22A2B4B052E5AF4F, NameHash = 0xCDB7AC6D11C9DF03)] public class GcCustomisationTextureOption : NMSTemplate { /* 0x00 */ public NMSString0x10 TextureOptionsID; /* 0x10 */ public NMSString0x10 Layer; /* 0x20 */ public NMSString0x10 Group; - /* 0x30 */ public TkPaletteTexture Palette; - /* 0x38 */ public List Options; - /* 0x48 */ public List Tips; + /* 0x30 */ public List Options; + /* 0x40 */ public List Tips; } } diff --git a/libMBIN/Source/NMS/GameComponents/GcCustomisationTextureOptions.cs b/libMBIN/Source/NMS/GameComponents/GcCustomisationTextureOptions.cs index 8f46b7185..0178211c3 100644 --- a/libMBIN/Source/NMS/GameComponents/GcCustomisationTextureOptions.cs +++ b/libMBIN/Source/NMS/GameComponents/GcCustomisationTextureOptions.cs @@ -3,7 +3,7 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0xA042A1C378099639, NameHash = 0x6464F543A870D3F3)] + [NMS(GUID = 0x841CE670028EC126, NameHash = 0x6464F543A870D3F3)] public class GcCustomisationTextureOptions : NMSTemplate { /* 0x0 */ public List TextureOptions; diff --git a/libMBIN/Source/Version.cs b/libMBIN/Source/Version.cs index 76c8888d8..4961e76ae 100644 --- a/libMBIN/Source/Version.cs +++ b/libMBIN/Source/Version.cs @@ -25,7 +25,7 @@ public static class Version { // the Prerelease version should be reset to 1 // When the Release version is incremented: // the Prerelease version should be reset to 0 - internal const string VERSION_STRING = "4.64.0.3"; + internal const string VERSION_STRING = "4.65.0.1"; /// Shorthand for AssemblyVersion.Major public static int Major => AssemblyVersion.Major;