blob: 4d35aa3f4c838edb23fa5260abc4804b88ebfae2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef MIN_FOOTPRINT_FILES_H
#define MIN_FOOTPRINT_FILES_H
#ifdef _WIN32
#pragma once
#endif
// If bForceRefresh is true, then it will dump out all the files
// regardless of what version we think we currently have.
void DumpMinFootprintFiles( bool bForceRefresh );
#endif // MIN_FOOTPRINT_FILES_H
|