Skip to content

Commit

Permalink
Probably fix compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-r-elp authored Aug 5, 2022
1 parent 65b636b commit 9a416c2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/STmanager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ class STManager {
std::string headsetType = "Unknown Android";
std::string gameVersion = "Unknown";

SafePtr<UnityEngine::Transform> Head;
SafePtr<UnityEngine::Transform> VR_Right;
SafePtr<UnityEngine::Transform> VR_Left;
UnityEngine::Transform* Head;
UnityEngine::Transform* VR_Right;
UnityEngine::Transform* VR_Left;

//LoggerContextObject HTTPLogger = getLogger().WithContext("Server").WithContext("HTTP");
//LoggerContextObject SocketLogger = getLogger().WithContext("Server").WithContext("Socket");
Expand Down
17 changes: 17 additions & 0 deletions mod.template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

{
"_QPVersion": "0.1.1",
"name": "${mod_name}",
"id": "${mod_id}",
"author": "EnderdracheLP, ComputerElite, Lauriethefish, Phaze",
"version": "${version}",
"packageId": "com.beatgames.beatsaber",
"packageVersion": "1.24.0",
"description": "Allows applications to get information from the game like, currently played song.",
"coverImage": "cover.png",
"dependencies": [],
"modFiles": [],
"libraryFiles": [],
"fileCopies": [],
"copyExtensions": []
}

0 comments on commit 9a416c2

Please sign in to comment.