HardCPP
HardCPP
Thanks for the report, i'm gonna take a look
i willl look for this
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
Fix issue #43
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.
Fixed in upcomming 5.0.1
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";...