1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-07-27 21:12:49 +00:00

rogueviz:: RVCOL stuff that was missing from rogueviz.h

This commit is contained in:
Zeno Rogue 2025-06-22 15:54:15 +02:00
parent 77791f212e
commit 611d305ac5

View File

@ -383,9 +383,15 @@ namespace smoothcam {
} }
#if RVCOL #if RVCOL
enum class rvlc { num, s, ms };
void rv_achievement(const string& name); 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 #endif
} }
#if RVCOL
using rogueviz::rvlc;
#endif
#endif #endif