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.
42 lines
920 B
42 lines
920 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $Workfile: $ |
|
// $Date: $ |
|
// |
|
//----------------------------------------------------------------------------- |
|
// $Log: $ |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
|
|
#ifndef QFILES_H |
|
#define QFILES_H |
|
#pragma once |
|
|
|
|
|
// |
|
// qfiles.h: quake file formats |
|
// This file must be identical in the quake and utils directories |
|
// |
|
|
|
#include "basetypes.h" |
|
#include "commonmacros.h" |
|
#include "worldsize.h" |
|
#include "bspfile.h" |
|
|
|
#define MAX_OSPATH 260 |
|
#define MAX_QPATH 64 |
|
|
|
/* |
|
======================================================================== |
|
|
|
The .pak files are just a linear collapse of a directory tree |
|
|
|
======================================================================== |
|
*/ |
|
|
|
#define IDPAKHEADER (('K'<<24)+('C'<<16)+('A'<<8)+'P') |
|
|
|
#endif // QFILES_H
|
|
|