Skip to content

Commit 2f52191

Browse files
committed
make version independent
1 parent b16cd12 commit 2f52191

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed
0 Bytes
Binary file not shown.

deps/red4ext.sdk

Submodule red4ext.sdk updated 659 files

src/Main.cpp

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
11
#include <iostream>
22

33
#include <RED4ext/RED4ext.hpp>
4-
#include <RED4ext/Scripting/Natives/Generated/Vector4.hpp>
5-
#include <RED4ext/Scripting/Natives/ScriptGameInstance.hpp>
6-
#include <RED4ext/Scripting/IScriptable.hpp>
7-
#include <RED4ext/RTTITypes.hpp>
8-
#include <RED4ext/Scripting/Natives/Generated/red/ResourceReferenceScriptToken.hpp>
9-
#include <RED4ext/Scripting/Natives/Generated/game/data/VehicleTPPCameraParams_Record.hpp>
10-
#include <RED4ext/Scripting/Natives/Generated/ink/ImageWidget.hpp>
11-
#include <RED4ext/Scripting/Natives/Generated/ink/TextureAtlas.hpp>
12-
#include <RED4ext/Scripting/Natives/Generated/ink/EBlurDimension.hpp>
13-
#include <RED4ext/Scripting/Natives/Generated/ink/BoxBlurEffect.hpp>
14-
#include <RED4ext/InstanceType.hpp>
15-
#include <RED4ext/Scripting/Natives/Generated/ink/IEffect.hpp>
164

175
#include <pugixml.hpp>
186

@@ -203,7 +191,7 @@ RED4EXT_C_EXPORT bool RED4EXT_CALL Main(RED4ext::PluginHandle aHandle, RED4ext::
203191
//DisableThreadLibraryCalls(aHandle);
204192

205193
Utils::CreateLogger();
206-
spdlog::info("Starting up Input Loader v0.0.10");
194+
spdlog::info("Starting up Input Loader v0.1.0");
207195
LoadInputConfigs();
208196
break;
209197
}
@@ -221,8 +209,8 @@ RED4EXT_C_EXPORT void RED4EXT_CALL Query(RED4ext::PluginInfo* aInfo)
221209
{
222210
aInfo->name = L"Input Loader";
223211
aInfo->author = L"Jack Humbert";
224-
aInfo->version = RED4EXT_SEMVER(0, 0, 10);
225-
aInfo->runtime = RED4EXT_RUNTIME_LATEST;
212+
aInfo->version = RED4EXT_SEMVER(0, 1, 0);
213+
aInfo->runtime = RED4EXT_RUNTIME_INDEPENDENT;
226214
aInfo->sdk = RED4EXT_SDK_LATEST;
227215
}
228216

0 commit comments

Comments
 (0)