mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-30 18:36:58 +03:00
19 lines
322 B
C++
19 lines
322 B
C++
#include "BaseProfiler.h"
|
|
|
|
BaseProfiler::BaseProfiler(OneSixInstance *instance, QObject *parent)
|
|
: QObject(parent), m_instance(instance)
|
|
{
|
|
}
|
|
|
|
BaseProfiler::~BaseProfiler()
|
|
{
|
|
}
|
|
|
|
void BaseProfiler::beginProfiling(MinecraftProcess *process)
|
|
{
|
|
beginProfilingImpl(process);
|
|
}
|
|
|
|
BaseProfilerFactory::~BaseProfilerFactory()
|
|
{
|
|
}
|