├── .clang-tidy ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── ScreamAPI.iml ├── cmake.xml ├── codeStyles │ └── codeStyleConfig.xml ├── dictionaries │ └── project.xml ├── editor.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── jsonSchemas.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── sync.xml └── vcs.xml ├── CMakeLists.txt ├── README.md ├── README.template.md ├── UNLICENSE.txt ├── res ├── README.txt ├── ScreamAPI.config.json ├── ScreamAPI.schema.json ├── eossdk │ ├── binaries │ │ ├── EOSSDK-Win32-Shipping.dll │ │ └── EOSSDK-Win64-Shipping.dll │ └── headers │ │ ├── Linux │ │ ├── eos_Linux.h │ │ └── eos_Linux_base.h │ │ ├── Mac │ │ ├── eos_Mac.h │ │ └── eos_Mac_base.h │ │ ├── Windows │ │ ├── eos_Windows.h │ │ └── eos_Windows_base.h │ │ ├── eos_achievements.h │ │ ├── eos_achievements_types.h │ │ ├── eos_achievements_types_deprecated.inl │ │ ├── eos_anticheatclient.h │ │ ├── eos_anticheatclient_types.h │ │ ├── eos_anticheatclient_types_deprecated.inl │ │ ├── eos_anticheatcommon_types.h │ │ ├── eos_anticheatserver.h │ │ ├── eos_anticheatserver_types.h │ │ ├── eos_auth.h │ │ ├── eos_auth_types.h │ │ ├── eos_auth_types_deprecated.inl │ │ ├── eos_base.h │ │ ├── eos_common.h │ │ ├── eos_connect.h │ │ ├── eos_connect_types.h │ │ ├── eos_custominvites.h │ │ ├── eos_custominvites_types.h │ │ ├── eos_ecom.h │ │ ├── eos_ecom_types.h │ │ ├── eos_friends.h │ │ ├── eos_friends_types.h │ │ ├── eos_init.h │ │ ├── eos_integratedplatform.h │ │ ├── eos_integratedplatform_types.h │ │ ├── eos_kws.h │ │ ├── eos_kws_types.h │ │ ├── eos_leaderboards.h │ │ ├── eos_leaderboards_types.h │ │ ├── eos_leaderboards_types_deprecated.inl │ │ ├── eos_lobby.h │ │ ├── eos_lobby_types.h │ │ ├── eos_logging.h │ │ ├── eos_logging_categories.h │ │ ├── eos_metrics.h │ │ ├── eos_metrics_types.h │ │ ├── eos_mods.h │ │ ├── eos_mods_types.h │ │ ├── eos_p2p.h │ │ ├── eos_p2p_types.h │ │ ├── eos_platform_prereqs.h │ │ ├── eos_playerdatastorage.h │ │ ├── eos_playerdatastorage_types.h │ │ ├── eos_presence.h │ │ ├── eos_presence_types.h │ │ ├── eos_progressionsnapshot.h │ │ ├── eos_progressionsnapshot_types.h │ │ ├── eos_reports.h │ │ ├── eos_reports_types.h │ │ ├── eos_result.h │ │ ├── eos_rtc.h │ │ ├── eos_rtc_admin.h │ │ ├── eos_rtc_admin_types.h │ │ ├── eos_rtc_audio.h │ │ ├── eos_rtc_audio_types.h │ │ ├── eos_rtc_audio_types_deprecated.inl │ │ ├── eos_rtc_data.h │ │ ├── eos_rtc_data_types.h │ │ ├── eos_rtc_types.h │ │ ├── eos_sanctions.h │ │ ├── eos_sanctions_types.h │ │ ├── eos_sdk.h │ │ ├── eos_sessions.h │ │ ├── eos_sessions_types.h │ │ ├── eos_stats.h │ │ ├── eos_stats_types.h │ │ ├── eos_titlestorage.h │ │ ├── eos_titlestorage_types.h │ │ ├── eos_types.h │ │ ├── eos_ui.h │ │ ├── eos_ui_buttons.h │ │ ├── eos_ui_keys.h │ │ ├── eos_ui_types.h │ │ ├── eos_userinfo.h │ │ ├── eos_userinfo_types.h │ │ └── eos_version.h └── extra_build_config.gen.h ├── schema.graphql ├── src ├── eos │ ├── ecom_entitlements.cpp │ ├── ecom_items.cpp │ ├── init.cpp │ ├── logging.cpp │ ├── metrics.cpp │ └── stubs.cpp ├── legacy_linker_exports.h ├── main.cpp └── scream_api │ ├── api.cpp │ ├── api.hpp │ ├── config.cpp │ ├── config.hpp │ ├── scream_api.cpp │ └── scream_api.hpp └── sync.json /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | 3 | *.dll binary 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.run 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/ScreamAPI.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/ScreamAPI.iml -------------------------------------------------------------------------------- /.idea/cmake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/cmake.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/dictionaries/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/dictionaries/project.xml -------------------------------------------------------------------------------- /.idea/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/editor.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jsonSchemas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/jsonSchemas.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/runConfigurations/sync.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/README.md -------------------------------------------------------------------------------- /README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/README.template.md -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /res/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/README.txt -------------------------------------------------------------------------------- /res/ScreamAPI.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/ScreamAPI.config.json -------------------------------------------------------------------------------- /res/ScreamAPI.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/ScreamAPI.schema.json -------------------------------------------------------------------------------- /res/eossdk/binaries/EOSSDK-Win32-Shipping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/binaries/EOSSDK-Win32-Shipping.dll -------------------------------------------------------------------------------- /res/eossdk/binaries/EOSSDK-Win64-Shipping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/binaries/EOSSDK-Win64-Shipping.dll -------------------------------------------------------------------------------- /res/eossdk/headers/Linux/eos_Linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/Linux/eos_Linux.h -------------------------------------------------------------------------------- /res/eossdk/headers/Linux/eos_Linux_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/Linux/eos_Linux_base.h -------------------------------------------------------------------------------- /res/eossdk/headers/Mac/eos_Mac.h: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #pragma once 4 | -------------------------------------------------------------------------------- /res/eossdk/headers/Mac/eos_Mac_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/Mac/eos_Mac_base.h -------------------------------------------------------------------------------- /res/eossdk/headers/Windows/eos_Windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/Windows/eos_Windows.h -------------------------------------------------------------------------------- /res/eossdk/headers/Windows/eos_Windows_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/Windows/eos_Windows_base.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_achievements.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_achievements_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_achievements_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_achievements_types_deprecated.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_achievements_types_deprecated.inl -------------------------------------------------------------------------------- /res/eossdk/headers/eos_anticheatclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_anticheatclient.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_anticheatclient_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_anticheatclient_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_anticheatclient_types_deprecated.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_anticheatclient_types_deprecated.inl -------------------------------------------------------------------------------- /res/eossdk/headers/eos_anticheatcommon_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_anticheatcommon_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_anticheatserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_anticheatserver.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_anticheatserver_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_anticheatserver_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_auth.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_auth_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_auth_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_auth_types_deprecated.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_auth_types_deprecated.inl -------------------------------------------------------------------------------- /res/eossdk/headers/eos_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_base.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_common.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_connect.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_connect_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_connect_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_custominvites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_custominvites.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_custominvites_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_custominvites_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_ecom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_ecom.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_ecom_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_ecom_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_friends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_friends.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_friends_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_friends_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_init.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_integratedplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_integratedplatform.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_integratedplatform_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_integratedplatform_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_kws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_kws.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_kws_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_kws_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_leaderboards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_leaderboards.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_leaderboards_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_leaderboards_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_leaderboards_types_deprecated.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_leaderboards_types_deprecated.inl -------------------------------------------------------------------------------- /res/eossdk/headers/eos_lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_lobby.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_lobby_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_lobby_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_logging.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_logging_categories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_logging_categories.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_metrics.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_metrics_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_metrics_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_mods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_mods.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_mods_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_mods_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_p2p.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_p2p_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_p2p_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_platform_prereqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_platform_prereqs.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_playerdatastorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_playerdatastorage.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_playerdatastorage_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_playerdatastorage_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_presence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_presence.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_presence_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_presence_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_progressionsnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_progressionsnapshot.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_progressionsnapshot_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_progressionsnapshot_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_reports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_reports.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_reports_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_reports_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_result.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_rtc.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_rtc_admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_rtc_admin.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_rtc_admin_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_rtc_admin_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_rtc_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_rtc_audio.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_rtc_audio_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_rtc_audio_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_rtc_audio_types_deprecated.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_rtc_audio_types_deprecated.inl -------------------------------------------------------------------------------- /res/eossdk/headers/eos_rtc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_rtc_data.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_rtc_data_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_rtc_data_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_rtc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_rtc_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_sanctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_sanctions.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_sanctions_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_sanctions_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_sdk.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_sessions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_sessions.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_sessions_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_sessions_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_stats.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_stats_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_stats_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_titlestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_titlestorage.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_titlestorage_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_titlestorage_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_ui.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_ui_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_ui_buttons.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_ui_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_ui_keys.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_ui_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_ui_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_userinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_userinfo.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_userinfo_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_userinfo_types.h -------------------------------------------------------------------------------- /res/eossdk/headers/eos_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/eossdk/headers/eos_version.h -------------------------------------------------------------------------------- /res/extra_build_config.gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/res/extra_build_config.gen.h -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/schema.graphql -------------------------------------------------------------------------------- /src/eos/ecom_entitlements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/eos/ecom_entitlements.cpp -------------------------------------------------------------------------------- /src/eos/ecom_items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/eos/ecom_items.cpp -------------------------------------------------------------------------------- /src/eos/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/eos/init.cpp -------------------------------------------------------------------------------- /src/eos/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/eos/logging.cpp -------------------------------------------------------------------------------- /src/eos/metrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/eos/metrics.cpp -------------------------------------------------------------------------------- /src/eos/stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/eos/stubs.cpp -------------------------------------------------------------------------------- /src/legacy_linker_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/legacy_linker_exports.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/scream_api/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/scream_api/api.cpp -------------------------------------------------------------------------------- /src/scream_api/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/scream_api/api.hpp -------------------------------------------------------------------------------- /src/scream_api/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/scream_api/config.cpp -------------------------------------------------------------------------------- /src/scream_api/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/scream_api/config.hpp -------------------------------------------------------------------------------- /src/scream_api/scream_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/scream_api/scream_api.cpp -------------------------------------------------------------------------------- /src/scream_api/scream_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/src/scream_api/scream_api.hpp -------------------------------------------------------------------------------- /sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/ScreamAPI/HEAD/sync.json --------------------------------------------------------------------------------