mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 06:36:54 +00:00
27 lines
539 B
C
27 lines
539 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#ifndef MAPS_H
|
|
#define MAPS_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Data describing a single map
|
|
//-----------------------------------------------------------------------------
|
|
typedef struct
|
|
{
|
|
|
|
char name[100];
|
|
int type;
|
|
} Maps_t;
|
|
|
|
|
|
#endif // MAPS_H
|