40483efbf8
Reviewed-by: pajlada <rasmus.karlsson@pajlada.com>
23 lines
395 B
C++
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
|