Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 21st, 2010 | Syntax: C++ | Size: 0.62 KB | Hits: 35 | Expires: Never
Copy text to clipboard
  1. //========= Copyright © 1996-2006, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7.  
  8. #ifndef SAVEPLAYERSTATS_H
  9. #define SAVEPLAYERSTATS_H
  10. #pragma once
  11.  
  12. class WoHItemList
  13. {
  14. public:
  15.         WoHItemList();
  16.  
  17.         void GetList( void );
  18.         void SetList( void );
  19.         void ListManager( void );
  20.  
  21.         ~WoHItemList(){};
  22.  
  23.         //Equipment
  24.         int m_nMaxHearts;
  25.         int m_nHasKokiriSword;
  26.         int m_nHasDekuShield;
  27.  
  28.         //vars
  29.         float m_fTimeTempSetList;
  30.         bool m_bOneShotGetList;
  31. };
  32.  
  33. extern WoHitemList *pItemList;
  34.  
  35. #endif