Results 11 comments of HardCPP

How i'm supposed to display this ? javascript popup ? modal box ?

i will implement but i dont have acces to a running p2pool for working :/

Ok i will do it soon i didnt hide i just forgot to implement that

Je propose : - OnFrame (à chaque frame du client) - OnEvent (à chaque événement)

Avec petit subtilité, le script s'inscrit à des événements, ils ne reçois que ceux qu'il demande.

One function you might need ```cpp std::u16string_view Levels::BeatmapDifficultyToBeatmapDifficultyEnumName(BeatmapDifficulty p_BeatmapDifficulty) { if (p_BeatmapDifficulty == BeatmapDifficulty::Easy) return u"Easy"; else if (p_BeatmapDifficulty == BeatmapDifficulty::Normal) return u"Normal"; else if (p_BeatmapDifficulty == BeatmapDifficulty::Hard) return u"Hard";...