mirror of
https://github.com/DaedalusX64/daedalus.git
synced 2025-04-02 10:21:48 -04:00
19 lines
218 B
C++
19 lines
218 B
C++
#ifndef OSHLE_OSTASK_H_
|
|
#define OSHLE_OSTASK_H_
|
|
|
|
#include "Ultra/ultra_sptask.h"
|
|
|
|
class COSTask
|
|
{
|
|
public:
|
|
COSTask(OSTask * pTask)
|
|
{
|
|
m_pTask = pTask;
|
|
}
|
|
|
|
protected:
|
|
OSTask * m_pTask;
|
|
|
|
};
|
|
|
|
#endif // OSHLE_OSTASK_H_
|