mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 20:17:24 +08:00
c75a17256e
* feat(crossmap): update thanks @Aure7138 * feat(TSE): updated most hashes * feat(ScriptEventHandler): Remove abused TSE hashes * feat(pointers): fix snitl * fix(pointers): region code * fix(pointers): handle join request * fix(pointers): decode session info * fix(pointers): connect to peer * fix(pointers): decode peer info * fix(pointers): add player to session * fix(pointers): handle join request * fix(pointers): Is Matchmaking Session Valid * fix(pointers): send session matchmaking attributes * fix(pointers): process matchmaking find response * fix(pointers): serialize join request message * fix(TSE): updated lost few, thanks @Rimmuru * fix(Menu): update menu (#930) * fix(globals): mechanic global * feat(meta): bump version * feat(spoofing): remove patched stuff * fix(self): off radar timer offset * fix(overlay): retain last position * feat(self): commented dance mode * feat(spoofing): add note about spoofing not working Co-authored-by: maybegreat48 <96936658+maybegreat48@users.noreply.github.com>
15 lines
357 B
CMake
15 lines
357 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
gtav_classes
|
|
GIT_REPOSITORY https://github.com/Yimura/GTAV-Classes.git
|
|
GIT_TAG f155790d38c131f4df0933283a577423e0ddd2da
|
|
GIT_PROGRESS TRUE
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
)
|
|
message("GTAV-Classes")
|
|
if(NOT gtav_classes_POPULATED)
|
|
FetchContent_Populate(gtav_classes)
|
|
endif()
|