Files
chatterino2/src/controllers/commands/builtin/twitch/Prediction.hpp

23 lines
395 B
C++

#pragma once
class QString;
namespace chatterino {
struct CommandContext;
} // namespace chatterino
namespace chatterino::commands {
/// /prediction
QString createPrediction(const CommandContext &ctx);
/// /lockprediction
QString lockPrediction(const CommandContext &ctx);
/// /cancelprediction
QString cancelPrediction(const CommandContext &ctx);
} // namespace chatterino::commands