diff --git a/Tools/auto_extract/extractor.py b/Tools/auto_extract/extractor.py index 438dd67ca..5a60293db 100644 --- a/Tools/auto_extract/extractor.py +++ b/Tools/auto_extract/extractor.py @@ -131,7 +131,7 @@ "cCollisionShapeType" ] # Classes that don't look like globals but actually are. -ACTUALLY_GLOBALS = ['GcSceneOptions', 'GcSmokeTestOptions', 'GcDebugOptions'] +ACTUALLY_GLOBALS = ['GcSceneOptions', 'GcSmokeTestOptions', 'GcDebugOptions', 'GcCollisionTable'] NAME_MAPPING = { 'GcDefaulMissionProduct': 'GcDefaultMissionProduct', 'GcDefaulMissionSubstance': 'GcDefaultMissionSubstance', diff --git a/libMBIN/Source/NMS/Globals/GcCollisionTable.cs b/libMBIN/Source/NMS/Globals/GcCollisionTable.cs new file mode 100644 index 000000000..ea73516ba --- /dev/null +++ b/libMBIN/Source/NMS/Globals/GcCollisionTable.cs @@ -0,0 +1,12 @@ +using libMBIN.NMS.GameComponents; +using System.Collections.Generic; + +namespace libMBIN.NMS.Globals +{ + [NMS(GUID = 0x1523805BD7445AE4, NameHash = 0x36E3583)] + public class GcCollisionTable : NMSTemplate + { + [NMS(Index = 0)] + /* 0x0 */ public List CollisionTable; + } +} diff --git a/libMBIN/Source/Version.cs b/libMBIN/Source/Version.cs index acaa69b82..7685b432d 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 = "6.24.0.1"; + internal const string VERSION_STRING = "6.24.0.2"; /// Shorthand for AssemblyVersion.Major public static int Major => AssemblyVersion.Major; diff --git a/libMBIN/libMBIN-Shared.projitems b/libMBIN/libMBIN-Shared.projitems index f2325ce20..05e0498d0 100644 --- a/libMBIN/libMBIN-Shared.projitems +++ b/libMBIN/libMBIN-Shared.projitems @@ -315,7 +315,6 @@ - @@ -2331,6 +2330,7 @@ +