headers, split steppable
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user