Skip to content

Commit b30f1ff

Browse files
committed
Strive frame advantage
1 parent 7fbd98c commit b30f1ff

18 files changed

Lines changed: 1588 additions & 2 deletions

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Output/
2+
GGSTCharaSlots/
3+
GBVSRollback/
4+
pak_reloader/

CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
cmake_minimum_required(VERSION 3.18)
2+
3+
project(UE4SSMods)
4+
5+
add_subdirectory(RE-UE4SS)
6+
add_subdirectory(GGSTCharaSlots)
7+
add_subdirectory(StriveFrameData)
8+
add_subdirectory(pak_reloader)

RE-UE4SS

Submodule RE-UE4SS updated 200 files

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
# UE4SSMods
2+
3+
My collection of mods made in UE4SS. Currently, the only public mod in this repo is the Strive frame advantage mod.
4+
5+
Build instructions can be found at [the main UE4SS repo](https://github.com/UE4SS-RE/RE-UE4SS).

StriveFrameData/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/x64

StriveFrameData/CMakeLists.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
cmake_minimum_required(VERSION 3.18)
2+
3+
set(TARGET StriveFrameData)
4+
project(${TARGET})
5+
6+
set(${TARGET}_Sources
7+
"${CMAKE_CURRENT_SOURCE_DIR}/src/arcsys.cpp"
8+
"${CMAKE_CURRENT_SOURCE_DIR}/src/bbscript.cpp"
9+
"${CMAKE_CURRENT_SOURCE_DIR}/src/dllmain.cpp"
10+
"${CMAKE_CURRENT_SOURCE_DIR}/src/sigscan.cpp"
11+
)
12+
13+
add_library(${TARGET} SHARED ${${TARGET}_Sources})
14+
target_include_directories(${TARGET} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include)
15+
target_link_libraries(${TARGET} PUBLIC ue4ss)

StriveFrameData/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# StriveHitboxes-UE4SS
2+
Strive hitbox viewer for UE4SS.

0 commit comments

Comments
 (0)