Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
947 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Holds the CEconGameAccountClient object
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef ECON_GAME_ACCOUNT_CLIENT_H
  8. #define ECON_GAME_ACCOUNT_CLIENT_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "gcsdk/protobufsharedobject.h"
  13. #include "base_gcmessages.pb.h"
  14. //---------------------------------------------------------------------------------
  15. // Purpose: All the account-level information that the GC tracks
  16. //---------------------------------------------------------------------------------
  17. class CEconGameAccountClient : public GCSDK::CProtoBufSharedObject< CSOEconGameAccountClient, k_EEconTypeGameAccountClient >
  18. {
  19. #ifdef GC
  20. DECLARE_CLASS_MEMPOOL( CEconGameAccountClient );
  21. public:
  22. virtual bool BIsDatabaseBacked() const { return false; }
  23. #endif
  24. };
  25. #endif //ECON_GAME_ACCOUNT_CLIENT_H