Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/B/BSResource_EntryQueue.h
T
2026-05-30 18:33:24 +12:00

18 lines
304 B
C++

#pragma once
#include "RE/B/BSSpinLock.h"
namespace RE::BSResource
{
template <class T>
class EntryQueue
{
public:
// members
BSNonReentrantSpinLock lock; // 00
T* head; // 08
T** tail; // 10
};
static_assert(sizeof(EntryQueue<void>) == 0x18);
}