Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Rubberduckycooly
GitHub Repository: Rubberduckycooly/RSDKv5-Decompilation
Path: blob/master/RSDKv5/RSDK/User/Dummy/DummyStats.hpp
1182 views
1
#include <vector>
2
3
// This is the "dummy" struct, it serves as the base in the event a suitable API isn't loaded (such as in this decomp)
4
// This struct should never be removed, other structs such as "SteamStats" would be added and "stats" would be set to that instead
5
struct DummyStats : UserStats {
6
void TryTrackStat(StatInfo *stat);
7
};
8
9