mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-12-08 11:08:23 +00:00
22 lines
481 B
C
22 lines
481 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef ENTITYDEFS_H
|
|
#define ENTITYDEFS_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
#define MAX_ENTITY_NAME_LEN 256
|
|
|
|
#define MAX_IO_NAME_LEN 256
|
|
|
|
#define VMF_IOPARAM_STRING_DELIMITER 0x1b // Use ESC as a delimiter so we can pass commas etc. in I/O parameters
|
|
|
|
#endif // ENTITYDEFS_H
|