docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user