Files
maszyna/betterRenderer/renderer/source/motioncache.cpp
2025-04-15 01:32:56 +02:00

11 lines
261 B
C++

#include "motioncache.h"
MotionCacheScope::MotionCacheScope(void const* instance, MotionCache* cache)
: m_instance(instance), m_cache(cache) {
m_cache->SetActiveScope(this);
}
MotionCacheScope::~MotionCacheScope() {
m_cache->UnsetActiveScope(this);
}