From f7decf41d8d0062901cd39c42a3669a80537c7df Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Thu, 3 Aug 2017 20:03:59 +0500 Subject: 2017-08-03 --- src/Thread.hpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/Thread.hpp (limited to 'src/Thread.hpp') 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 -- cgit v1.2.3