diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-20 11:12:44 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-20 11:12:44 +0100 |
commit | 44741315c6d2df9bd6591c19ea189163e5c70add (patch) | |
tree | bc4d65efbd0c78cf704db8afd1c08c64c04996c0 /src/test/ScriptTest.h | |
parent | 5b1a26a13d8a2f44a7ef1fa8c0fc609c37adc28b (diff) | |
parent | 226e01dcd77821d1fccdf42074606ce80528637e (diff) |
merge loek/scripts
Diffstat (limited to 'src/test/ScriptTest.h')
-rw-r--r-- | src/test/ScriptTest.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/ScriptTest.h b/src/test/ScriptTest.h index f3dbda4..8637df0 100644 --- a/src/test/ScriptTest.h +++ b/src/test/ScriptTest.h @@ -29,7 +29,8 @@ public: public: MOCK_METHOD(void, init, (), (override)); - MOCK_METHOD(void, update, (crepe::duration_t), (override)); + MOCK_METHOD(void, fixed_update, (crepe::duration_t), (override)); + MOCK_METHOD(void, frame_update, (crepe::duration_t), (override)); }; crepe::OptionalRef<crepe::BehaviorScript> behaviorscript; |