add clock to bar

This commit is contained in:
2025-12-08 23:41:34 +01:00
commit de6ece13fa
8 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class IUpdatable {
public:
virtual ~IUpdatable() = default;
virtual bool onUpdate() = 0;
};