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