reVeno/Source/Veno/Core/VeNoState.cpp
2020-06-14 21:14:28 +02:00

17 lines
212 B
C++

//
// Created by versustune on 14.06.20.
//
#include "VeNoState.h"
VeNoState::VeNoState (std::string pid)
{
m_pid = pid;
}
VeNoState::~VeNoState ()
{
delete configScreen;
configScreen = nullptr;
}