Skip to content

Commit cd44e89

Browse files
committed
#111 emblem sync, refactoring
1 parent 4943132 commit cd44e89

26 files changed

+2691
-2448
lines changed

hook/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ FetchContent_MakeAvailable(mINI)
2828
FetchContent_Declare(
2929
spdlog
3030
GIT_REPOSITORY https://github.com/gabime/spdlog.git
31-
GIT_TAG 6fa36017cfd5731d617e1a934f0e5ea9c4445b13
31+
GIT_TAG 486b55554f11c9cccc913e11a87085b2a91f706f
3232
)
3333
FetchContent_MakeAvailable(spdlog)
3434

@@ -77,6 +77,9 @@ add_library(${PROJECT_NAME} SHARED
7777
src/Tpp/TppTypes.cpp
7878
src/util.cpp
7979

80+
src/dynamiteHooks.cpp
81+
src/dynamitePatches.cpp
82+
src/DynamiteCore.cpp
8083
src/dynamite.cpp
8184
src/DynamiteLua.cpp
8285
src/DynamiteHook.cpp

hook/src/BlockInfo.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#ifndef HOOK_BLOCKINFO_H
2+
#define HOOK_BLOCKINFO_H
3+
#include <cstdint>
4+
5+
struct BlockInfo {
6+
uint32_t counter;
7+
uint32_t blockState;
8+
};
9+
10+
#endif // HOOK_BLOCKINFO_H

0 commit comments

Comments
 (0)