├── .gitignore ├── cpp-examples └── example-presence │ ├── .gitignore │ ├── example-presence.sln │ └── example-presence │ ├── discord-files │ ├── achievement_manager.cpp │ ├── achievement_manager.h │ ├── activity_manager.cpp │ ├── activity_manager.h │ ├── application_manager.cpp │ ├── application_manager.h │ ├── core.cpp │ ├── core.h │ ├── discord.h │ ├── event.h │ ├── ffi.h │ ├── image_manager.cpp │ ├── image_manager.h │ ├── lobby_manager.cpp │ ├── lobby_manager.h │ ├── network_manager.cpp │ ├── network_manager.h │ ├── overlay_manager.cpp │ ├── overlay_manager.h │ ├── relationship_manager.cpp │ ├── relationship_manager.h │ ├── storage_manager.cpp │ ├── storage_manager.h │ ├── store_manager.cpp │ ├── store_manager.h │ ├── types.cpp │ ├── types.h │ ├── user_manager.cpp │ ├── user_manager.h │ ├── voice_manager.cpp │ └── voice_manager.h │ ├── discord_game_sdk.dll │ ├── discord_game_sdk.dll.lib │ ├── example-presence.vcxproj │ ├── example-presence.vcxproj.filters │ └── main.cpp ├── cs-examples └── unity-examples │ └── Assets │ ├── DiscordController.cs │ ├── Plugins │ ├── DiscordGameSDK │ │ ├── ActivityManager.cs │ │ ├── Constants.cs │ │ ├── Core.cs │ │ ├── ImageManager.cs │ │ ├── LobbyManager.cs │ │ ├── StorageManager.cs │ │ └── StoreManager.cs │ ├── x86 │ │ ├── discord_game_sdk.dll │ │ └── discord_game_sdk.dll.lib │ └── x86_64 │ │ ├── discord_game_sdk.bundle │ │ ├── discord_game_sdk.dll │ │ ├── discord_game_sdk.dll.lib │ │ └── discord_game_sdk.dylib │ └── Test.unity └── unreal-examples └── game-sdk-test ├── Binaries └── Win64 │ ├── discord_game_sdk.dll │ └── discord_game_sdk.dll.lib └── Source ├── gamesdktest.Target.cs ├── gamesdktest ├── MyPawn.cpp ├── MyPawn.h ├── discord-files │ ├── achievement_manager.cpp │ ├── achievement_manager.h │ ├── activity_manager.cpp │ ├── activity_manager.h │ ├── application_manager.cpp │ ├── application_manager.h │ ├── core.cpp │ ├── core.h │ ├── discord.h │ ├── event.h │ ├── ffi.h │ ├── image_manager.cpp │ ├── image_manager.h │ ├── lobby_manager.cpp │ ├── lobby_manager.h │ ├── network_manager.cpp │ ├── network_manager.h │ ├── overlay_manager.cpp │ ├── overlay_manager.h │ ├── relationship_manager.cpp │ ├── relationship_manager.h │ ├── storage_manager.cpp │ ├── storage_manager.h │ ├── store_manager.cpp │ ├── store_manager.h │ ├── types.cpp │ ├── types.h │ ├── user_manager.cpp │ ├── user_manager.h │ ├── voice_manager.cpp │ └── voice_manager.h ├── gamesdktest.Build.cs ├── gamesdktest.cpp └── gamesdktest.h └── gamesdktestEditor.Target.cs /.gitignore: -------------------------------------------------------------------------------- 1 | *.meta -------------------------------------------------------------------------------- /cpp-examples/example-presence/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/.gitignore -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence.sln -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/achievement_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/achievement_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/achievement_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/achievement_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/activity_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/activity_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/activity_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/activity_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/application_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/application_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/application_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/application_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/core.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/core.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/discord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/discord.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/event.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/ffi.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/image_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/image_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/image_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/image_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/lobby_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/lobby_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/lobby_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/lobby_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/network_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/network_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/network_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/network_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/overlay_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/overlay_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/overlay_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/overlay_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/relationship_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/relationship_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/relationship_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/relationship_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/storage_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/storage_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/storage_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/storage_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/store_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/store_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/store_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/store_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/types.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/types.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/user_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/user_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/user_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/user_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/voice_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/voice_manager.cpp -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord-files/voice_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord-files/voice_manager.h -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord_game_sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord_game_sdk.dll -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/discord_game_sdk.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/discord_game_sdk.dll.lib -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/example-presence.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/example-presence.vcxproj -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/example-presence.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/example-presence.vcxproj.filters -------------------------------------------------------------------------------- /cpp-examples/example-presence/example-presence/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cpp-examples/example-presence/example-presence/main.cpp -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/DiscordController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/DiscordController.cs -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/ActivityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/ActivityManager.cs -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/Constants.cs -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/Core.cs -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/ImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/ImageManager.cs -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/LobbyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/LobbyManager.cs -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/StorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/StorageManager.cs -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/StoreManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/DiscordGameSDK/StoreManager.cs -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/x86/discord_game_sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/x86/discord_game_sdk.dll -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/x86/discord_game_sdk.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/x86/discord_game_sdk.dll.lib -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/x86_64/discord_game_sdk.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/x86_64/discord_game_sdk.bundle -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/x86_64/discord_game_sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/x86_64/discord_game_sdk.dll -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/x86_64/discord_game_sdk.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/x86_64/discord_game_sdk.dll.lib -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Plugins/x86_64/discord_game_sdk.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Plugins/x86_64/discord_game_sdk.dylib -------------------------------------------------------------------------------- /cs-examples/unity-examples/Assets/Test.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/cs-examples/unity-examples/Assets/Test.unity -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Binaries/Win64/discord_game_sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Binaries/Win64/discord_game_sdk.dll -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Binaries/Win64/discord_game_sdk.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Binaries/Win64/discord_game_sdk.dll.lib -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest.Target.cs -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/MyPawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/MyPawn.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/MyPawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/MyPawn.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/achievement_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/achievement_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/achievement_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/achievement_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/activity_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/activity_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/activity_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/activity_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/application_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/application_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/application_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/application_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/core.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/core.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/discord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/discord.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/event.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/ffi.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/image_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/image_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/image_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/image_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/lobby_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/lobby_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/lobby_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/lobby_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/network_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/network_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/network_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/network_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/overlay_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/overlay_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/overlay_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/overlay_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/relationship_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/relationship_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/relationship_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/relationship_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/storage_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/storage_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/storage_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/storage_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/store_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/store_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/store_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/store_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/types.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/types.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/user_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/user_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/user_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/user_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/voice_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/voice_manager.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/voice_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/discord-files/voice_manager.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/gamesdktest.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/gamesdktest.Build.cs -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/gamesdktest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/gamesdktest.cpp -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktest/gamesdktest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktest/gamesdktest.h -------------------------------------------------------------------------------- /unreal-examples/game-sdk-test/Source/gamesdktestEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msciotti/discord-game-sdk-test-apps/HEAD/unreal-examples/game-sdk-test/Source/gamesdktestEditor.Target.cs --------------------------------------------------------------------------------