mirror of https://github.com/zeldaret/botw.git
Add EventFlow submodule
This commit is contained in:
parent
f376435211
commit
60b2362ddc
|
@ -10,3 +10,6 @@
|
||||||
[submodule "asm-differ"]
|
[submodule "asm-differ"]
|
||||||
path = tools/asm-differ
|
path = tools/asm-differ
|
||||||
url = https://github.com/simonlindholm/asm-differ
|
url = https://github.com/simonlindholm/asm-differ
|
||||||
|
[submodule "lib/EventFlow"]
|
||||||
|
path = lib/EventFlow
|
||||||
|
url = https://github.com/open-ead/EventFlow
|
||||||
|
|
|
@ -29,4 +29,7 @@ target_link_libraries(uking PUBLIC sead)
|
||||||
add_subdirectory(lib/agl)
|
add_subdirectory(lib/agl)
|
||||||
target_link_libraries(uking PUBLIC agl)
|
target_link_libraries(uking PUBLIC agl)
|
||||||
|
|
||||||
|
add_subdirectory(lib/EventFlow)
|
||||||
|
target_link_libraries(uking PRIVATE evfl)
|
||||||
|
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 8d138e1b808250b14a87ca6339d79e6292000abe
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
namespace evfl {
|
namespace evfl {
|
||||||
class ParamAccessor;
|
class ParamAccessor;
|
||||||
class QueryArg;
|
struct QueryArg;
|
||||||
} // namespace evfl
|
} // namespace evfl
|
||||||
|
|
||||||
namespace ksys::act {
|
namespace ksys::act {
|
||||||
|
|
Loading…
Reference in New Issue