Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added SteamInventoryInterface #94

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Makefile
*.vcxproj.*
*.xcodeproj/
*.xcworkspace
*.log

# IDE files
.idea/
Expand Down
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## change log

### HEAD
- Updated to Steamworks SDK v1.46.
- Updated to Steamworks SDK v1.49.
- Added SteamInventory interface.
- Added `SteamUserCallback.onAuthSessionTicket()`. (#83)

### [1.8.0]
Expand Down
2 changes: 1 addition & 1 deletion build-natives/build-win.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ solution "steamworks4j"
platforms { "x32", "x64" }

-- Premake 5.0.0 alpha 11 : SDK version needs to be specified for VS2017
systemversion("10.0.14393.0")
systemversion("10.0.18362.0")

includedirs {
"../java-wrapper/src/main/native/include/jni",
Expand Down
4 changes: 2 additions & 2 deletions java-wrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ static boolean isIsNativeAPILoaded() {
return (intp) SteamHTTP();
*/

static native long getSteamInventoryPointer(); /*
return (intp) SteamInventory();
*/

static native long getSteamMatchmakingPointer(); /*
return (intp) SteamMatchmaking();
*/
Expand Down
Loading