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 5struct DummyStats : UserStats { 6 void TryTrackStat(StatInfo *stat); 7}; 8 9