headers, split steppable

This commit is contained in:
2026-08-07 00:56:06 +02:00
parent 6f7bd9d964
commit d2d9ef6c70
5 changed files with 41 additions and 36 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef STEPPABLE_HPP
#define STEPPABLE_HPP
#include <cstddef>
class Steppable {
public:
virtual ~Steppable() = default;
bool is_finished = 0;
size_t stepcount = 0;
virtual bool step() = 0;
};
#endif