mirror-chatterino2/src/common/Args.hpp

18 lines
265 B
C++
Raw Normal View History

#pragma once
namespace chatterino {
/// Command line arguments passed to Chatterino.
class Args
{
public:
Args(const QStringList &args);
bool crashRecovery{};
};
void initArgs(const QStringList &args);
const Args &getArgs();
} // namespace chatterino