From 80bf5fa735bcbd03c317261b5f14746ddb8e0761 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sat, 13 Jul 2024 11:31:32 +0300 Subject: [PATCH] DGDS: Remove unimplemented function definitions --- engines/dgds/scene.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/engines/dgds/scene.h b/engines/dgds/scene.h index 38c373221ff..3ce0d88f5e6 100644 --- a/engines/dgds/scene.h +++ b/engines/dgds/scene.h @@ -302,9 +302,6 @@ public: bool runPreTickOps() { return runOps(_preTickOps); } bool runPostTickOps() { return runOps(_postTickOps); } - void mouseMoved(const Common::Point pt); - void mouseClicked(const Common::Point pt); - bool runOps(const Common::Array &ops, int16 addMinutes = 0); virtual Common::Error syncState(Common::Serializer &s) = 0; virtual void enableTrigger(uint16 numm, bool enable = true) {} @@ -331,9 +328,6 @@ protected: void setItemAttrOp(const Common::Array &args); void setDragItemOp(const Common::Array &args); - void drawDragonCountdown1(); - void drawDragonCountdown2(); - bool runSceneOp(const SceneOp &op); bool runDragonOp(const SceneOp &op); bool runChinaOp(const SceneOp &op);