mirror of
https://github.com/rehlds/rechecker.git
synced 2025-02-05 02:00:43 +03:00
21 lines
550 B
C
21 lines
550 B
C
|
//========= Copyright 1996-2001, Valve LLC, All rights reserved. ============
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================
|
||
|
|
||
|
#if !defined( SAVEGAME_VERSION_H )
|
||
|
#define SAVEGAME_VERSION_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "commonmacros.h"
|
||
|
|
||
|
#define SAVEFILE_HEADER MAKEID('V','A','L','V') // little-endian "VALV"
|
||
|
#define SAVEGAME_HEADER MAKEID('J','S','A','V') // little-endian "JSAV"
|
||
|
#define SAVEGAME_VERSION 0x0071 // Version 0.71
|
||
|
|
||
|
#endif // SAVEGAME_VERSION_H
|