From 611d305ac58ee78e042e44078430b63e0dbbd79c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 22 Jun 2025 15:54:15 +0200 Subject: [PATCH] rogueviz:: RVCOL stuff that was missing from rogueviz.h --- rogueviz/rogueviz.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rogueviz/rogueviz.h b/rogueviz/rogueviz.h index 707ce3c9..de81b0b4 100644 --- a/rogueviz/rogueviz.h +++ b/rogueviz/rogueviz.h @@ -383,9 +383,15 @@ namespace smoothcam { } #if RVCOL +enum class rvlc { num, s, ms }; void rv_achievement(const string& name); -void rv_leaderboard(const string& name, int score); +void rv_leaderboard(const string& name, int score, int highisgood, rvlc x); +void rv_leaderboard(const string& name, int score, int highisgood, rvlc x, const string& data); #endif } +#if RVCOL +using rogueviz::rvlc; +#endif + #endif