Files
ss/include/nw4r/snd/snd_Task.h
T
2023-12-24 11:35:03 -05:00

28 lines
458 B
C++

#ifndef NW4R_SND_TASK_H
#define NW4R_SND_TASK_H
#include "types_nw4r.h"
#include "ut_LinkList.h"
namespace nw4r
{
namespace snd
{
namespace detail
{
struct Task
{
virtual ~Task(); // at 0x8
virtual void Execute() = 0; // at 0xc
virtual void Cancel() = 0; // at 0x10
virtual void OnCancel() = 0; // at 0x14
ut::LinkListNode mNode; // at 0x4
char BYTE_0xC;
inline Task() : BYTE_0xC() {}
};
}
}
}
#endif