diff options
Diffstat (limited to 'src/Thread.hpp')
-rw-r--r-- | src/Thread.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Thread.hpp b/src/Thread.hpp new file mode 100644 index 0000000..ddc0dc5 --- /dev/null +++ b/src/Thread.hpp @@ -0,0 +1,7 @@ +#pragma once + +struct Thread { + Thread() = default; + virtual ~Thread() = default; + virtual void Execute() = 0; +};
\ No newline at end of file |