Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.
 
 
 
 
 
 

33 lines
918 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef STORE_PAGE_MAPS_H
#define STORE_PAGE_MAPS_H
#ifdef _WIN32
#pragma once
#endif
#include "store/v1/tf_store_page.h"
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
class CTFStorePage_Maps : public CTFStorePage1
{
DECLARE_CLASS_SIMPLE( CTFStorePage_Maps, CTFStorePage1 );
public:
CTFStorePage_Maps( Panel *parent, const CEconStoreCategoryManager::StoreCategory_t *pPageData );
virtual ~CTFStorePage_Maps() {}
virtual const char* GetPageResFile() { return "Resource/UI/econ/store/v1/StorePage_Maps.res"; }
virtual void OnPageShow( void );
protected:
};
#endif // STORE_PAGE_MAPS_H