Files
Aerofoil/PortabilityLayer/PLHandle.cpp
2019-12-29 23:14:37 -05:00

10 lines
168 B
C++

#include "PLHandle.h"
#include "MemoryManager.h"
void THandleBase::Dispose()
{
if (m_hdl)
PortabilityLayer::MemoryManager::GetInstance()->ReleaseHandle(m_hdl);
}