Skip to content

Commit

Permalink
Update Heroes.SDK Dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Jan 1, 2020
1 parent 6ad986a commit c6e91dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Submodules/Heroes.SDK
Submodule Heroes.SDK updated 27 files
+4 −5 Heroes.SDK.Library/Classes/NativeClasses/Octree.cs
+4 −4 Heroes.SDK.Library/Classes/NativeClasses/TObjLand.cs
+118 −0 Heroes.SDK.Library/Definitions/Structures/Archive/OneFile/Custom/ManagedOneFile.cs
+20 −0 Heroes.SDK.Library/Definitions/Structures/Archive/OneFile/OneArchiveHeader.cs
+54 −2 Heroes.SDK.Library/Definitions/Structures/Archive/OneFile/OneFileEntry.cs
+10 −0 Heroes.SDK.Library/Definitions/Structures/Archive/OneFile/OneNameSectionHeader.cs
+5 −3 Heroes.SDK.Library/Definitions/Structures/Graphics/Device/NativeResolutionEntry.cs
+17 −0 Heroes.SDK.Library/Definitions/Structures/RenderWare/RwVersion.cs
+1 −0 Heroes.SDK.Library/Definitions/Structures/Stage/Spawn/PositionEnd.cs
+1 −0 Heroes.SDK.Library/Definitions/Structures/Stage/Spawn/PositionStart.cs
+5 −3 Heroes.SDK.Library/Definitions/Structures/Stage/Splines/SplineVertex.cs
+25 −1 Heroes.SDK.Library/Definitions/Structures/State/VictoryTracker.cs
+8 −52 Heroes.SDK.Library/Heroes.SDK.csproj
+0 −0 Heroes.SDK.Library/Parsers/Custom/ManagedSpline.cs
+16 −0 Heroes.SDK.Library/Parsers/Custom/SplineFile.cs
+95 −17 Heroes.SDK.Library/Parsers/OneArchive.cs
+10 −2 Heroes.SDK.Library/SDK.cs
+74 −0 Heroes.SDK.Library/Utilities/ExtendedMemoryStream.cs
+1 −4 Heroes.SDK.Library/Utilities/Math/CameraVectors.cs
+21 −0 Heroes.SDK.Library/Utilities/Math/Structs/Vector3.cs
+21 −0 Heroes.SDK.Library/Utilities/Misc/Casts.cs
+44 −0 Heroes.SDK.Library/Utilities/Misc/JsonSerializable.cs
+9 −0 Heroes.SDK.Tests/Assets/Assets.cs
+ Heroes.SDK.Tests/Assets/PrimModels.one
+21 −3 Heroes.SDK.Tests/Heroes.SDK.Tests.csproj
+37 −0 Heroes.SDK.Tests/OneArchiveParserTests.cs
+15 −8 README.md
2 changes: 1 addition & 1 deletion sonicheroes.utils.freecam/ModConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"ModId": "sonicheroes.utils.freecam",
"ModName": "Heroes Freecam",
"ModAuthor": "Sewer56",
"ModVersion": "2.0.1",
"ModVersion": "2.0.2",
"ModDescription": "A free camera for the PC version of Sonic Heroes. Provides additional utilities like freezing world, teleporting and removing HUD.",
"ModDll": "sonicheroes.utils.freecam.dll",
"ModIcon": "Preview.png",
Expand Down
2 changes: 1 addition & 1 deletion sonicheroes.utils.freecam/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private void Initialize()
_controllerHook = _modLoader.GetController<IControllerHook>();
_reloadedHooks = _modLoader.GetController<IReloadedHooks>();
_reloadedHooks.TryGetTarget(out var reloadedHooks);
SDK.Init(reloadedHooks);
SDK.Init(reloadedHooks, null);

_freeCameras = new Freecam[4];
for (int x = 0; x < _freeCameras.Length; x++)
Expand Down

0 comments on commit c6e91dc

Please sign in to comment.