diff --git a/obse/obse/CommandTable.h b/obse/obse/CommandTable.h index 7595878..7f456b3 100644 --- a/obse/obse/CommandTable.h +++ b/obse/obse/CommandTable.h @@ -1,5 +1,5 @@ #pragma once - +#include enum ParamType { kParamType_String = 0x00, diff --git a/obse/obse/GameExtraData.cpp b/obse/obse/GameExtraData.cpp index b4ef128..c36a8bf 100644 --- a/obse/obse/GameExtraData.cpp +++ b/obse/obse/GameExtraData.cpp @@ -2,7 +2,6 @@ #include "obse/GameAPI.h" #include "obse/GameObjects.h" #include "obse/Script.h" -#include "obse/Hooks_Gameplay.h" #include typedef ExtraContainerChanges* (* _GetOrCreateExtraContainerChanges)(TESObjectREFR* refr); diff --git a/obse/obse/GameTasks.cpp b/obse/obse/GameTasks.cpp index cf3fdcd..3ec6569 100644 --- a/obse/obse/GameTasks.cpp +++ b/obse/obse/GameTasks.cpp @@ -2,7 +2,6 @@ #include "GameAPI.h" #include "GameForms.h" #include "GameObjects.h" -#include "Hooks_Gameplay.h" IOManager** g_ioManager = (IOManager**)0x00B33A10; diff --git a/obse/obse/Utilities.cpp b/obse/obse/Utilities.cpp index d14fd90..d2b49b0 100644 --- a/obse/obse/Utilities.cpp +++ b/obse/obse/Utilities.cpp @@ -4,7 +4,8 @@ #include "GameAPI.h" #include "Script.h" #include "GameOSDepend.h" - +#include +#include void PrintItemType(TESForm * form) { Console_Print("%s (%s)", GetFullName(form), GetObjectClassName(form)); diff --git a/obse/obse/Utilities.h b/obse/obse/Utilities.h index 9e7d4ac..44d24da 100644 --- a/obse/obse/Utilities.h +++ b/obse/obse/Utilities.h @@ -1,4 +1,5 @@ #pragma once +#include class TESForm; class Script; diff --git a/obse/obse_common/obse_version.aps b/obse/obse_common/obse_version.aps index c6c8390..365f742 100644 Binary files a/obse/obse_common/obse_version.aps and b/obse/obse_common/obse_version.aps differ diff --git a/obse/obse_common/obse_version.h b/obse/obse_common/obse_version.h index 7e98fbf..539a665 100644 --- a/obse/obse_common/obse_version.h +++ b/obse/obse_common/obse_version.h @@ -3,9 +3,9 @@ // these have to be macros so they can be used in the .rc #define OBSE_VERSION_INTEGER 22 -#define OBSE_VERSION_INTEGER_MINOR 10 //Avoid using revision 0 (at least 1 mod break for this) +#define OBSE_VERSION_INTEGER_MINOR 11 //Avoid using revision 0 (at least 1 mod break for this) #define OBSE_VERSION_INTEGER_HOTIFX 0 -#define OBSE_VERSION_VERSTRING "0, 22, 10, 0" +#define OBSE_VERSION_VERSTRING "0, 22, 11, 0" #define OBSE_VERSION_PADDEDSTRING "0022" // build numbers are the month and date each build was made diff --git a/obse/obse_common/obse_version.rc b/obse/obse_common/obse_version.rc index c5de08c..511f5ea 100644 --- a/obse/obse_common/obse_version.rc +++ b/obse/obse_common/obse_version.rc @@ -14,8 +14,8 @@ LANGUAGE LANG_ITALIAN, SUBLANG_ITALIAN // 1 VERSIONINFO - FILEVERSION 0,22,10,0 - PRODUCTVERSION 0,22,10,0 + FILEVERSION 0,22,11,0 + PRODUCTVERSION 0,22,11,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -31,11 +31,11 @@ BEGIN BLOCK "041004b0" BEGIN VALUE "FileDescription", "A component of the Oblivion Script Extender" - VALUE "FileVersion", "0.22.10.0" + VALUE "FileVersion", "0.22.11.0" VALUE "InternalName", "obse" VALUE "LegalCopyright", "Copyright (C) 2006-2023" VALUE "ProductName", "obse" - VALUE "ProductVersion", "0.22.10.0" + VALUE "ProductVersion", "0.22.11.0" END END BLOCK "VarFileInfo"