aegis-dos-protection/source/Threads/Thread.cpp
2021-10-23 16:53:40 +02:00

6 lines
105 B
C++

#include "Threads/Thread.hpp"
Thread::Thread() : _quit(false) {}
void Thread::quit() { _quit = true; }