thunderbrew/src/async/CAsyncThread.hpp
2023-01-02 13:17:18 -06:00

20 lines
378 B
C++

#ifndef ASYNC_C_ASYNC_THREAD_HPP
#define ASYNC_C_ASYNC_THREAD_HPP
#include <cstdint>
#include <storm/List.hpp>
#include <storm/Thread.hpp>
class CAsyncObject;
class CAsyncQueue;
class CAsyncThread : public TSLinkedNode<CAsyncThread> {
public:
// Member variables
SThread thread;
CAsyncQueue* queue;
CAsyncObject* currentObject;
};
#endif